├── Art Assets ├── Characters │ ├── Doctor.png │ ├── Mayor.png │ ├── MayorFace.png │ ├── PlayerFace.png │ ├── Protagonist.png │ └── Shopkeep.png ├── Environment │ ├── ForestBackground.png │ ├── ForestForegroundElements.png │ ├── background.png │ ├── buildingsAndRoads.png │ ├── dragon.png │ ├── map.jpg │ ├── modern_campsite.png │ ├── modern_oldBuilding.png │ ├── skyline.png │ └── townObjects.png ├── FX │ ├── attacks.png │ └── smokeCloud.png ├── Props │ ├── SelectionCircle.png │ └── healing_items.png └── UI │ ├── BattleGUI.png │ ├── Inventory.png │ ├── packt.png │ └── soundUI.png ├── Final Code Files ├── Attack.cs ├── BattleIntro.cs ├── BattleManager.cs ├── CameraLookAt.cs ├── CharacterMovement.cs ├── Classes │ ├── Conversation.cs │ ├── ConversationComponent.cs │ ├── ConversationEntry.cs │ ├── CustomAssetUtility.cs │ ├── Enemy.cs │ ├── EnemyClass.cs │ ├── Entity.cs │ ├── GameState.cs │ ├── InventoryItem.cs │ ├── Npc.cs │ ├── Player.cs │ ├── Properties │ │ └── PopUpAttribute.cs │ └── Singleton.cs ├── ConversationManager.cs ├── Editor │ ├── CameraTargetEditor.cs │ ├── ConversationAssetCreator.cs │ ├── InventoryItemAssetCreator.cs │ ├── MyEditorWindow.cs │ ├── MyMenu.cs │ ├── PropertyDrawers │ │ └── PopUpCustomPropertyDrawer.cs │ └── SaveSceneOnPlay.cs ├── EnemyController.cs ├── FollowCamera.cs ├── KeepAround.cs ├── LevelLoader.cs ├── MapPosition.cs ├── Messaging │ ├── Messaging.cs │ ├── MessagingClientBroadcast.cs │ ├── MessagingClientReceiver.cs │ └── MessagingManager.cs ├── MuteUnMute.cs ├── Navigation │ ├── NavigationMananger.cs │ └── NavigationPrompt.cs ├── PlayerInventoryDisplay.cs ├── PopUpMenu.cs ├── RandomBattle.cs ├── Shop │ ├── ShopManager.cs │ └── ShopSlot.cs ├── Sorting.cs └── SplashScreen.cs ├── LICENSE ├── Mastering Unity 2D Project ├── Assembly-CSharp-Editor.csproj ├── Assembly-CSharp.csproj ├── Assembly-UnityScript.unityproj ├── Assets │ ├── Animation.meta │ ├── Animation │ │ ├── Clips.meta │ │ ├── Clips │ │ │ ├── IntroSlideAnimation.anim │ │ │ ├── IntroSlideAnimation.anim.meta │ │ │ ├── PlayerIdleDown.anim │ │ │ ├── PlayerIdleDown.anim.meta │ │ │ ├── PlayerIdleHorizontal.anim │ │ │ ├── PlayerIdleHorizontal.anim.meta │ │ │ ├── PlayerIdleUp.anim │ │ │ ├── PlayerIdleUp.anim.meta │ │ │ ├── PlayerWalkDown.anim │ │ │ ├── PlayerWalkDown.anim.meta │ │ │ ├── PlayerWalkHorizontal.anim │ │ │ ├── PlayerWalkHorizontal.anim.meta │ │ │ ├── PlayerWalkUp.anim │ │ │ └── PlayerWalkUp.anim.meta │ │ ├── Controllers.meta │ │ └── Controllers │ │ │ ├── BattleStateMachine.controller │ │ │ ├── BattleStateMachine.controller.meta │ │ │ ├── DragonAI.controller │ │ │ ├── DragonAI.controller.meta │ │ │ ├── New Animator Controller.controller │ │ │ ├── New Animator Controller.controller.meta │ │ │ ├── PlayerWalking.controller │ │ │ ├── PlayerWalking.controller.meta │ │ │ ├── VsAnimator.controller │ │ │ └── VsAnimator.controller.meta │ ├── Audio.meta │ ├── Audio │ │ ├── Enemy.meta │ │ ├── FX.meta │ │ ├── FX │ │ │ ├── 140382__d-w__coins-01.wav │ │ │ └── 140382__d-w__coins-01.wav.meta │ │ ├── Music.meta │ │ ├── Music │ │ │ ├── Bit Shift.mp3 │ │ │ └── Bit Shift.mp3.meta │ │ └── Player.meta │ ├── Fonts.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Attacks.mat │ │ ├── Attacks.mat.meta │ │ ├── smoke.mat │ │ └── smoke.mat.meta │ ├── Physics Materials.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Characters.meta │ │ ├── Characters │ │ │ ├── Dragon.prefab │ │ │ ├── Dragon.prefab.meta │ │ │ ├── Player.prefab │ │ │ └── Player.prefab.meta │ │ ├── Environment.meta │ │ ├── Environment │ │ │ ├── MapPoint.prefab │ │ │ ├── MapPoint.prefab.meta │ │ │ ├── Zone.prefab │ │ │ └── Zone.prefab.meta │ │ ├── FX.meta │ │ ├── FX │ │ │ ├── Chop and Smoke.prefab │ │ │ ├── Chop and Smoke.prefab.meta │ │ │ ├── Kick and Smoke.prefab │ │ │ ├── Kick and Smoke.prefab.meta │ │ │ ├── Smack and Smoke.prefab │ │ │ ├── Smack and Smoke.prefab.meta │ │ │ ├── Wack and Smoke.prefab │ │ │ └── Wack and Smoke.prefab.meta │ │ ├── Props.meta │ │ ├── Props │ │ │ ├── SelectionCircle.prefab │ │ │ └── SelectionCircle.prefab.meta │ │ ├── UI.meta │ │ └── UI │ │ │ ├── Button Menu.prefab │ │ │ ├── Button Menu.prefab.meta │ │ │ ├── InventoryItemPrefab.prefab │ │ │ └── InventoryItemPrefab.prefab.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Conversations.meta │ │ ├── Conversations │ │ │ ├── MayorWarning.asset │ │ │ └── MayorWarning.asset.meta │ │ ├── Inventory Items.meta │ │ └── Inventory Items │ │ │ ├── Bandaid.asset │ │ │ ├── Bandaid.asset.meta │ │ │ ├── BlueCapsule.asset │ │ │ ├── BlueCapsule.asset.meta │ │ │ ├── MedPack.asset │ │ │ ├── MedPack.asset.meta │ │ │ ├── RedCapsule.asset │ │ │ └── RedCapsule.asset.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── BattleScene.unity │ │ ├── BattleScene.unity.meta │ │ ├── EditorDemos.unity │ │ ├── EditorDemos.unity.meta │ │ ├── GameOver.unity │ │ ├── GameOver.unity.meta │ │ ├── Overworld.unity │ │ ├── Overworld.unity.meta │ │ ├── Shop.unity │ │ ├── Shop.unity.meta │ │ ├── SplashScreen.unity │ │ ├── SplashScreen.unity.meta │ │ ├── StartScreen.unity │ │ ├── StartScreen.unity.meta │ │ ├── Town.unity │ │ └── Town.unity.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── Attack.cs │ │ ├── Attack.cs.meta │ │ ├── BattleIntro.cs │ │ ├── BattleIntro.cs.meta │ │ ├── BattleManager.cs │ │ ├── BattleManager.cs.meta │ │ ├── CameraLookAt.cs │ │ ├── CameraLookAt.cs.meta │ │ ├── CharacterMovement.cs │ │ ├── CharacterMovement.cs.meta │ │ ├── Classes.meta │ │ ├── Classes │ │ │ ├── Conversation.cs │ │ │ ├── Conversation.cs.meta │ │ │ ├── ConversationComponent.cs │ │ │ ├── ConversationComponent.cs.meta │ │ │ ├── ConversationEntry.cs │ │ │ ├── ConversationEntry.cs.meta │ │ │ ├── Enemy.cs │ │ │ ├── Enemy.cs.meta │ │ │ ├── EnemyClass.cs │ │ │ ├── EnemyClass.cs.meta │ │ │ ├── Entity.cs │ │ │ ├── Entity.cs.meta │ │ │ ├── GameState.cs │ │ │ ├── GameState.cs.meta │ │ │ ├── InventoryItem.cs │ │ │ ├── InventoryItem.cs.meta │ │ │ ├── Npc.cs │ │ │ ├── Npc.cs.meta │ │ │ ├── Player.cs │ │ │ ├── Player.cs.meta │ │ │ ├── Properties.meta │ │ │ ├── Properties │ │ │ │ ├── PopUpAttribute.cs │ │ │ │ └── PopUpAttribute.cs.meta │ │ │ ├── Singleton.cs │ │ │ └── Singleton.cs.meta │ │ ├── ConversationManager.cs │ │ ├── ConversationManager.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── CameraTargetEditor.cs │ │ │ ├── CameraTargetEditor.cs.meta │ │ │ ├── ConversationAssetCreator.cs │ │ │ ├── ConversationAssetCreator.cs.meta │ │ │ ├── CustomAssetUtility.cs │ │ │ ├── CustomAssetUtility.cs.meta │ │ │ ├── InventoryItemAssetCreator.cs │ │ │ ├── InventoryItemAssetCreator.cs.meta │ │ │ ├── MyEditorWindow.cs │ │ │ ├── MyEditorWindow.cs.meta │ │ │ ├── MyMenu.cs │ │ │ ├── MyMenu.cs.meta │ │ │ ├── PropertyDrawers.meta │ │ │ ├── PropertyDrawers │ │ │ │ ├── PopUpCustomPropertyDrawer.cs │ │ │ │ └── PopUpCustomPropertyDrawer.cs.meta │ │ │ ├── SaveSceneOnPlay.cs │ │ │ └── SaveSceneOnPlay.cs.meta │ │ ├── EnemyController.cs │ │ ├── EnemyController.cs.meta │ │ ├── FollowCamera.cs │ │ ├── FollowCamera.cs.meta │ │ ├── KeepAround.cs │ │ ├── KeepAround.cs.meta │ │ ├── LevelLoader.cs │ │ ├── LevelLoader.cs.meta │ │ ├── MapPosition.cs │ │ ├── MapPosition.cs.meta │ │ ├── Messaging.meta │ │ ├── Messaging │ │ │ ├── Messaging.cs │ │ │ ├── Messaging.cs.meta │ │ │ ├── MessagingClientBroadcast.cs │ │ │ ├── MessagingClientBroadcast.cs.meta │ │ │ ├── MessagingClientReceiver.cs │ │ │ ├── MessagingClientReceiver.cs.meta │ │ │ ├── MessagingManager.cs │ │ │ └── MessagingManager.cs.meta │ │ ├── MuteUnMute.cs │ │ ├── MuteUnMute.cs.meta │ │ ├── Navigation.meta │ │ ├── Navigation │ │ │ ├── NavigationMananger.cs │ │ │ ├── NavigationMananger.cs.meta │ │ │ ├── NavigationPrompt.cs │ │ │ └── NavigationPrompt.cs.meta │ │ ├── PlayerInventoryDisplay.cs │ │ ├── PlayerInventoryDisplay.cs.meta │ │ ├── PopUpMenu.cs │ │ ├── PopUpMenu.cs.meta │ │ ├── RandomBattle.cs │ │ ├── RandomBattle.cs.meta │ │ ├── Shop.meta │ │ ├── Shop │ │ │ ├── ShopManager.cs │ │ │ ├── ShopManager.cs.meta │ │ │ ├── ShopSlot.cs │ │ │ └── ShopSlot.cs.meta │ │ ├── Sorting.cs │ │ ├── Sorting.cs.meta │ │ ├── SplashScreen.cs │ │ └── SplashScreen.cs.meta │ ├── Sprites.meta │ ├── Sprites │ │ ├── Characters.meta │ │ ├── Characters │ │ │ ├── Doctor.png │ │ │ ├── Doctor.png.meta │ │ │ ├── Mayor.png │ │ │ ├── Mayor.png.meta │ │ │ ├── MayorFace.png │ │ │ ├── MayorFace.png.meta │ │ │ ├── PlayerFace.png │ │ │ ├── PlayerFace.png.meta │ │ │ ├── Protagonist.png │ │ │ ├── Protagonist.png.meta │ │ │ ├── Shopkeep.png │ │ │ └── Shopkeep.png.meta │ │ ├── Environment.meta │ │ ├── Environment │ │ │ ├── ForestBackground.png │ │ │ ├── ForestBackground.png.meta │ │ │ ├── ForestForegroundElements.png │ │ │ ├── ForestForegroundElements.png.meta │ │ │ ├── background.png │ │ │ ├── background.png.meta │ │ │ ├── buildingsAndRoads.png │ │ │ ├── buildingsAndRoads.png.meta │ │ │ ├── dragon.png │ │ │ ├── dragon.png.meta │ │ │ ├── map.jpg │ │ │ ├── map.jpg.meta │ │ │ ├── modern_campsite.png │ │ │ ├── modern_campsite.png.meta │ │ │ ├── modern_oldBuilding.png │ │ │ ├── modern_oldBuilding.png.meta │ │ │ ├── skyline.png │ │ │ ├── skyline.png.meta │ │ │ ├── townObjects.png │ │ │ └── townObjects.png.meta │ │ ├── FX.meta │ │ ├── FX │ │ │ ├── attacks.png │ │ │ ├── attacks.png.meta │ │ │ ├── smokeCloud.png │ │ │ └── smokeCloud.png.meta │ │ ├── Props.meta │ │ ├── Props │ │ │ ├── SelectionCircle.png │ │ │ ├── SelectionCircle.png.meta │ │ │ ├── healing_items.png │ │ │ └── healing_items.png.meta │ │ ├── UI.meta │ │ └── UI │ │ │ ├── BattleGUI.png │ │ │ ├── BattleGUI.png.meta │ │ │ ├── Inventory.png │ │ │ ├── Inventory.png.meta │ │ │ ├── packt.png │ │ │ ├── packt.png.meta │ │ │ ├── soundUI.png │ │ │ └── soundUI.png.meta │ ├── newPositionManager.asset │ └── newPositionManager.asset.meta ├── Library │ ├── AnnotationManager │ ├── AssetImportState │ ├── AssetServerCacheV3 │ ├── AssetVersioning.db │ ├── BuildPlayer.prefs │ ├── BuildSettings.asset │ ├── CurrentLayout.dwlt │ ├── EditorUserBuildSettings.asset │ ├── EditorUserSettings.asset │ ├── InspectorExpandedItems.asset │ ├── LastSceneManagerSetup.txt │ ├── LibraryFormatVersion.txt │ ├── MonoManager.asset │ ├── ProjectSettings.asset │ ├── ScriptAssemblies │ │ ├── Assembly-CSharp-Editor.dll │ │ ├── Assembly-CSharp-Editor.dll.mdb │ │ ├── Assembly-CSharp.dll │ │ ├── Assembly-CSharp.dll.mdb │ │ └── BuiltinAssemblies.stamp │ ├── ScriptMapper │ ├── ShaderCache.db │ ├── ShaderCache │ │ ├── 0 │ │ │ ├── 005b1ff643ccc0f502bfdef9b6df85d2.bin │ │ │ ├── 0164cb851a747e1a36b66f58aee02d74.bin │ │ │ ├── 018bbb76a9e88b7d9172aa21d57826c1.bin │ │ │ ├── 01d2a95abb82dbfdc17c06897e1f4720.bin │ │ │ ├── 021b1d7f306303f0e7b3bd6e3eddbbf5.bin │ │ │ ├── 023605c1129e91a84feafb375851d6d8.bin │ │ │ ├── 02db033272eaeb7a192c665e28e24594.bin │ │ │ ├── 03525a05ef566dc0be4f3468cb8581c5.bin │ │ │ ├── 04401b9a4342c212db4b03d907ac21de.bin │ │ │ ├── 04d56c9ebd53d7672c9ff5290865f45d.bin │ │ │ ├── 0593da3cd136723e04ed14e3b52af5a9.bin │ │ │ ├── 05b11717fe98fead3fc9530341704268.bin │ │ │ ├── 05c8ab37e75b21ba43fcd12a8cd8851c.bin │ │ │ ├── 05ce80e819508d05a1e026c8c5976834.bin │ │ │ ├── 0601421be0ef52052c4a548c869d9a80.bin │ │ │ ├── 06fc5bfc42c8a83be594f28ffbef1db7.bin │ │ │ ├── 0756641ea868a33a115f7389d89c2561.bin │ │ │ ├── 078f2be17cc85aca8a56f06846816437.bin │ │ │ ├── 07b69fb494bc7681bdcccb1ff7f728be.bin │ │ │ ├── 0865207f5ca0b4f758e5e678b07e3b1a.bin │ │ │ ├── 0892238069f20bc4e3704ab0383a9d30.bin │ │ │ ├── 09a49448a4bfe5da8a267b72144a8719.bin │ │ │ ├── 09cbd9b9a2210059b70f74a910e99086.bin │ │ │ ├── 09f4eb50ec844c77e04db4be3fd95744.bin │ │ │ ├── 0a030748de876711c15b7bd98889fcf4.bin │ │ │ ├── 0a12e7fdff5c2a410c5a68a9016d9415.bin │ │ │ ├── 0a1f888e4e361acb99ec6ddbe76cbc3b.bin │ │ │ ├── 0a7f9799588a4a3e8099739a79fc1509.bin │ │ │ ├── 0ac15fdf3dc9e1cb8ea0e7b77c409ec9.bin │ │ │ ├── 0c0b2b285e769f633a311fed382e2d63.bin │ │ │ ├── 0c43f54d02d42448a349f6a337b6f986.bin │ │ │ ├── 0c9efb4d3180a51d2f55338f033aebf0.bin │ │ │ ├── 0cae9d530c5a9e3a0c241e94efe897e1.bin │ │ │ ├── 0e3b2a3ab42572ce75820393e85d20f4.bin │ │ │ ├── 0ed98aa431a97fb30cc4099ffbfb1ebf.bin │ │ │ ├── 0edcd4a103c1d7ecb4b17f41d91345c5.bin │ │ │ └── 0f3eb378414817f78194afaed4fec2c0.bin │ │ ├── 1 │ │ │ ├── 10bdb97372595006a872dede5c6ef2a0.bin │ │ │ ├── 125cbb7f99ee43f99027f79c768a0feb.bin │ │ │ ├── 12934f232f001b720ff466580944dea2.bin │ │ │ ├── 12aa31b7f818c93b553258ee55a7df0a.bin │ │ │ ├── 12c3636087b2647a59aaa2a240b877c9.bin │ │ │ ├── 13d5ce21a3095ff574944fe052756928.bin │ │ │ ├── 13f15293b0e8a0c216bed43c4d975d3a.bin │ │ │ ├── 13f50bd961443427de9a6a65e5599000.bin │ │ │ ├── 1522164a99fe16eae5e930cd85c7610e.bin │ │ │ ├── 1589d7a5bd3f7f22f9b6fdefc29523bf.bin │ │ │ ├── 15b76d8c628f4bbb3afae4ab883cf16c.bin │ │ │ ├── 171c5f16a0978d1877886cda9590755d.bin │ │ │ ├── 17593b5a84b84e5f5a16a6c641f6c6fe.bin │ │ │ ├── 17b3a25270c1eb6132bb2267c217d39b.bin │ │ │ ├── 17d7bdfedbf725ff43c7c2f272506192.bin │ │ │ ├── 186aa2d5cb6ec4c7e70c4045c4dac724.bin │ │ │ ├── 189c0f7d4ff77b1481b5bc32ad0b80f4.bin │ │ │ ├── 19813e7865f11f8cf087bdbbbe50785a.bin │ │ │ ├── 19b4e13c7a7bb5f205245c77804bd049.bin │ │ │ ├── 19c46571cf3f76209505864610749d3c.bin │ │ │ ├── 1a2b7fe560e488a838d8954e1442eda6.bin │ │ │ ├── 1a6df6753c8c0a304d42cfb079c80557.bin │ │ │ ├── 1a90f4326711054b4a1681a657e6a4d0.bin │ │ │ ├── 1aa1872a074505a98c93d514837667ca.bin │ │ │ ├── 1aad73852e5850ea382a8b2833992d11.bin │ │ │ ├── 1ab6e480ab23144bb51de054a3570080.bin │ │ │ ├── 1b51043694e03c7d74399891463364f3.bin │ │ │ ├── 1bf2c3736ac27974a8e9841d6e30abab.bin │ │ │ ├── 1c462f925d7b28545d07bbb236ff6911.bin │ │ │ ├── 1c6990fbbef0c5e0c0601844c826959d.bin │ │ │ ├── 1cd99773f832ae0a6b1add58f7f5584c.bin │ │ │ ├── 1d6a9240916ed1b067028e203563311a.bin │ │ │ ├── 1d87cb1e3e40127b95e2c82036df42b3.bin │ │ │ ├── 1dcb8e23c14abc3d0ce0a024b3f3246f.bin │ │ │ ├── 1e1c100ac8200a76135329703d186c2a.bin │ │ │ ├── 1ea797f895664f7b7a0a5847a9442532.bin │ │ │ └── 1f80790188eb376b95f56454cd6c18ab.bin │ │ ├── 2 │ │ │ ├── 2089061d607109d905c0668e32dc86cc.bin │ │ │ ├── 227a2ab7bcf06da272cd7abcb450e2d2.bin │ │ │ ├── 22e8f3dc2b4b40b4b67f6e6158897577.bin │ │ │ ├── 2380de429c89d22791deeac3e7c1d0c1.bin │ │ │ ├── 23d08be0e1c1b2c38e6100725d5208f1.bin │ │ │ ├── 244d68422f1c6d1b3f01b57a25c071e7.bin │ │ │ ├── 24a0ddbb3af5376ec6f3c3969a3cb4f7.bin │ │ │ ├── 24a23d6e5c5cba8e125124d62334d9d5.bin │ │ │ ├── 24c716ed1c741c2268edab1a6046eeb9.bin │ │ │ ├── 264d35bc8909ca46808c44318a6f11a3.bin │ │ │ ├── 2709c4d96c560a6f4f84489b091b85b2.bin │ │ │ ├── 27543c58bc5c7348693621eb3712136d.bin │ │ │ ├── 29b69468c9f880825576fa538215312b.bin │ │ │ ├── 2afea3437e11bac761afdd75e07f39bd.bin │ │ │ ├── 2b2f81a572cf6dfcfcc530a5a2aadfe7.bin │ │ │ ├── 2cdc9b1152cc5c683117da100a4d9226.bin │ │ │ ├── 2d7428d301d9d647377f18f294913b88.bin │ │ │ ├── 2eacf145e35a4e03bbedee65c5459017.bin │ │ │ ├── 2eae73502381dccaa327189650f6b9fe.bin │ │ │ ├── 2ec5a5d737f366eba71240be0ca042df.bin │ │ │ ├── 2ed81bedefc536e3a0318fdd9c9ae8ea.bin │ │ │ ├── 2ee1bd566ebb1ac2534f2bb7805d568e.bin │ │ │ ├── 2f2a2f9a15f40be421afb3454af4e5b5.bin │ │ │ └── 2f783a6787bb0638b2fe238251cb71cb.bin │ │ ├── 3 │ │ │ ├── 30444415bc11804f1c64910918d41e3b.bin │ │ │ ├── 307f70e46723c449cfd40cc8a3798f86.bin │ │ │ ├── 3274e1998403954e52683eadfa852a56.bin │ │ │ ├── 32b966c0f98a32e98e03bcb79b756d14.bin │ │ │ ├── 3371b7be7bcbb346eda92c0bc2e51594.bin │ │ │ ├── 33a7de599964e778a10a7fe54f1d884d.bin │ │ │ ├── 34288208011548c1d5360129e1259750.bin │ │ │ ├── 347bc0227db2922865e4232ae37c78ed.bin │ │ │ ├── 34b1da4d940df8bbfc1be7b31823b3e0.bin │ │ │ ├── 3581697f5a5958b1a28ac0c079d4e70f.bin │ │ │ ├── 367a3bdb80afcb2d68f730099855ef31.bin │ │ │ ├── 36eb765628e6ff41e6c8b0786abfeb75.bin │ │ │ ├── 375e94eef49966dc17bc6766c9e862b1.bin │ │ │ ├── 37f865a9a94a505e059e13ebd51de09d.bin │ │ │ ├── 381e12cdf78c602de309aeab71662b35.bin │ │ │ ├── 38aa91f9394c92c966b576bdb9f86a62.bin │ │ │ ├── 391419708272de7ec853afd21d9d6925.bin │ │ │ ├── 3aaa8890f9d25bbcac4c67af8261c58b.bin │ │ │ ├── 3ada0b9b074c1da3cbaebcb13535bf1b.bin │ │ │ ├── 3af4bfadb0a0cf1028513c29ecaae187.bin │ │ │ ├── 3b8da18f02644ee508aaca6345a7167e.bin │ │ │ ├── 3b95a22b29ce1a752eea94ed86f12eeb.bin │ │ │ ├── 3bd9c69e0dabbcd0a792fb51bb5baa84.bin │ │ │ ├── 3be32702634463e1bcd71308db163fa1.bin │ │ │ ├── 3c17d459695d48cea3ba057e3a80aa70.bin │ │ │ ├── 3cb1d28a459c8267529f3c907542ed6f.bin │ │ │ ├── 3d1e4eb151f712f973e85b3a9988efcb.bin │ │ │ └── 3db3f522bd5694baba94df42ded45877.bin │ │ ├── 4 │ │ │ ├── 4045c7010e1ccf9a0bebe95712f04bfa.bin │ │ │ ├── 40919b1430998ccd74eb6ac8e2432865.bin │ │ │ ├── 410a8964beb85734363dd823282d011c.bin │ │ │ ├── 41e96681244cb9416d535d2ac799d9ac.bin │ │ │ ├── 42a02d045d35cea9ebc267fcf5af36e5.bin │ │ │ ├── 42a2a644e7ea080c72854bae7f3746b2.bin │ │ │ ├── 4307af2c9cd45e0f3619e8a507846f6d.bin │ │ │ ├── 430f63569da3fd4e12fc17b33abcd8a1.bin │ │ │ ├── 4418387cb80724b3a2bce83f6125d6d3.bin │ │ │ ├── 44418c7e2d946f89c2b2dab32c3c97a1.bin │ │ │ ├── 4497f45a62f7003cb3ed1586b9af10e4.bin │ │ │ ├── 45aafe606ab83bdac53f54888609eb08.bin │ │ │ ├── 4654f37e9e072f53e77bf6806a81f9c6.bin │ │ │ ├── 46b1f87d57c2ace4fb9b20a726407219.bin │ │ │ ├── 4738ca887ba4f1d72d6d262a727d97fc.bin │ │ │ ├── 474d9023b4052a2416a049e10627cc68.bin │ │ │ ├── 48115b6c7ad39c5e8f79f389a1dc7969.bin │ │ │ ├── 487a05413647b4cd81dfc4dfa74ce02c.bin │ │ │ ├── 48aee2573bbbb7756837f61982d5c5ee.bin │ │ │ ├── 48ebd775afbb54bc56b34eeb9e00e325.bin │ │ │ ├── 49f6859bb57c97b6577ee0b1f5ef167e.bin │ │ │ ├── 4a372b55502b255ec2461b1580a4c37f.bin │ │ │ ├── 4a9646f9038dfc371fbbbc6ca1fb4b79.bin │ │ │ ├── 4bd70b86d94c051b74d2ca99172088ec.bin │ │ │ ├── 4c137814270d2c98ff8cad1c912c6323.bin │ │ │ ├── 4d15f60ae0dedf1069b1f209475211d0.bin │ │ │ ├── 4db3de926c088af71dec565e3b7e977d.bin │ │ │ ├── 4dc4f744399e2d10a06dde9d1ebe3f7e.bin │ │ │ ├── 4dd1b545c46af033aa80614c8ec4bc0b.bin │ │ │ └── 4fe2cd64553f696a1b6008439fb577b3.bin │ │ ├── 5 │ │ │ ├── 504422858c3bd37019c0110f0d26a0d0.bin │ │ │ ├── 50d3211041fb53f4b6f4e4077f64803d.bin │ │ │ ├── 51285c992c67b733e30398fd74acc3c0.bin │ │ │ ├── 51fcb6e83c8be09207429e8188dcbac6.bin │ │ │ ├── 5298a23dd9c9354ac53d0f719ea9f4d4.bin │ │ │ ├── 52a8bc24771cf21a15e6a901ae0a3c3b.bin │ │ │ ├── 535fb5e6455c315494069b764025a1d5.bin │ │ │ ├── 54627d8f545cf4328d2a04cce9663cb7.bin │ │ │ ├── 54aac0499566c16c88870ea4df4751ec.bin │ │ │ ├── 54aac75a7b22a4b2a7b1755df55aea1f.bin │ │ │ ├── 55561413cb7ac0ef31f7cfdc57d4f32c.bin │ │ │ ├── 55750c4cba7aa42ec9cb86ae89e48161.bin │ │ │ ├── 56187c48ee716126750d3d9940a8cd74.bin │ │ │ ├── 5705d63a47ba02135220e5814b9e0eb6.bin │ │ │ ├── 57859c5db5c39a3294d1c710d2047d28.bin │ │ │ ├── 57aa7905caf94381dc97b238b2fc06c0.bin │ │ │ ├── 58a6795eab287c9b38ffe11e0ab39514.bin │ │ │ ├── 59161af07e9e2870885d96a26e5a595e.bin │ │ │ ├── 5a92970b656f59d3df1b48f2de93c733.bin │ │ │ ├── 5ae0eef068fe70d0d6770f8559ccbc25.bin │ │ │ ├── 5b7ea82ed062366b0d8ed100480103ce.bin │ │ │ ├── 5c1bd1de4adf9a5458251e2548a990ce.bin │ │ │ ├── 5c508ec9ae0752e998ee3bc2f5c9dce6.bin │ │ │ ├── 5d509ad3287e487c29e3cd434452145d.bin │ │ │ ├── 5d856e8531ed5bfcd8ed17fcfb203257.bin │ │ │ ├── 5e043929c2bab90214123834c2458002.bin │ │ │ ├── 5f3a1a092f4ea5a3c67c14b45189962b.bin │ │ │ ├── 5f8d245fcec00b4b853753572b8c7fd4.bin │ │ │ └── 5fcf8a6a7fdf3ea146de8315e6f55243.bin │ │ ├── 6 │ │ │ ├── 60f8b612e3c7261cdf93916c7607929e.bin │ │ │ ├── 61305c99fd344b253b27cca8900e50b5.bin │ │ │ ├── 61b14d94ff1a4ed54936e4c0d9535c8c.bin │ │ │ ├── 6202db2d053f2ac72327081e15005962.bin │ │ │ ├── 6317e570508ba3afaf5eb4a577fe69e4.bin │ │ │ ├── 635d4dea8df4f20db86604a7feb5cedc.bin │ │ │ ├── 6441a864b12fa892115a58510cb533b1.bin │ │ │ ├── 66eee90560ddd0e61eee6145600106bd.bin │ │ │ ├── 66f782b064161d6a74b56f9e06a6720c.bin │ │ │ ├── 66fa7a19911b232ccea9a08e725ce1a1.bin │ │ │ ├── 672d47a374705cdc58c13135a4da2c6b.bin │ │ │ ├── 67aa9102d5639f94ec57f392bc6a2b06.bin │ │ │ ├── 687d03c952c62783263acf852ab29d3d.bin │ │ │ ├── 68c0993d78fb31ef4172baa3862b2b78.bin │ │ │ ├── 693a09076faae76f551a36bcb2019eda.bin │ │ │ ├── 695b42ac0bf408e5ed0c7f846deb1558.bin │ │ │ ├── 69a95f36c95498e08a7d1697ba96120e.bin │ │ │ ├── 69c24032485d025a57bdbaa83c3beff5.bin │ │ │ ├── 6aec0057da9b262f7578a083293d943e.bin │ │ │ ├── 6b23f4deabc5cf640995da3382a54469.bin │ │ │ ├── 6bdc2f9fa043931bfff11c4abe0a3747.bin │ │ │ ├── 6bf67abd6c4d4862edb832d838d4a92e.bin │ │ │ ├── 6cc174a6ba465d3f9fb2cc67507d2ac2.bin │ │ │ ├── 6cc850efda1743e1da34454dafe7c22a.bin │ │ │ ├── 6d59eb56c88e78e6335d4375619a6586.bin │ │ │ ├── 6d86cac22ded7a26cb43a5708510205f.bin │ │ │ ├── 6e814a85eda1fc8ad421177b30c7e152.bin │ │ │ ├── 6ed4c62b28384284c66994a0e98c56e1.bin │ │ │ ├── 6f3b21538bd0aa29cbabc6b1b3545a1d.bin │ │ │ └── 6f7d191dc134806a0937f457b82ddd7f.bin │ │ ├── 7 │ │ │ ├── 70429116a4561ba302b01cc74662d07c.bin │ │ │ ├── 706d744f0bcf028ff925b78b61f51ead.bin │ │ │ ├── 70eaba88feccc08e590e68e20b7f992a.bin │ │ │ ├── 7249350d8f98cca43e34f676b7ea10da.bin │ │ │ ├── 72bdd0bb3c9c5dd310c12f52e6e1ef23.bin │ │ │ ├── 72c249d78c0bc76656b641ca21296be7.bin │ │ │ ├── 72c675084901b47701f6acc0a5d300e1.bin │ │ │ ├── 73a492d5f1a0d1d259708b549673c468.bin │ │ │ ├── 744f911506fa5f6e110798d5deb19bd3.bin │ │ │ ├── 75196566d4bcc08cf5a2295ab5769ae5.bin │ │ │ ├── 755f4107d1b1090eb0ec9aa284684a27.bin │ │ │ ├── 75ee57b9f5d7f4325c66fd6294accc86.bin │ │ │ ├── 7621bc3d9bc024906dbcecd1b66c8b25.bin │ │ │ ├── 76c79e800dfb65128c5d6506550ec0e8.bin │ │ │ ├── 77208b4069c02b06cf1298732a44cc0f.bin │ │ │ ├── 77554f53e367a700b8ebb929c6b6c796.bin │ │ │ ├── 77fee384daed42f89c5de20d00500fbb.bin │ │ │ ├── 782049b7fd8311043e041525ce478694.bin │ │ │ ├── 789ffe76ce7a9ce0f90c8463bf022481.bin │ │ │ ├── 78e6b7ceee79dbd5c49b526a1b441797.bin │ │ │ ├── 7940ffa420e86c1ec1475d951e737348.bin │ │ │ ├── 797aa013242f27ca087e3193126d1845.bin │ │ │ ├── 7bc6dd74879c46f4c8c8ff4fcbbd7985.bin │ │ │ ├── 7bc7e45e07ba18018cb40ea1c0e1f432.bin │ │ │ ├── 7bcf766189a477486d2d6b0a7de0b51a.bin │ │ │ ├── 7c0a3cf51278b3987e0ac7888110eacb.bin │ │ │ ├── 7c1103dc5ac17019964f9e518eecd5d6.bin │ │ │ ├── 7cf98c2caa28c06d3c921e83d5776fb2.bin │ │ │ ├── 7d0d6533f055f4807494cb8e687aa521.bin │ │ │ ├── 7d2335f9ab588c012a54f58e8ffcd8a5.bin │ │ │ ├── 7d494751edc4a2a77a97ad059abec05b.bin │ │ │ ├── 7e3e330747f51740262432a42f85bb34.bin │ │ │ └── 7fe12ec0994755bcb2524e94711fbd74.bin │ │ ├── 8 │ │ │ ├── 81d93b1ed01dfa71a2a42acaece08db4.bin │ │ │ ├── 82163991a04daa5deb239635f8ae7e32.bin │ │ │ ├── 822e1c203263235199a71936871c8647.bin │ │ │ ├── 82962325d377549bcebb57987169af45.bin │ │ │ ├── 82a9d3a22906c43a69c8add3c33a5a14.bin │ │ │ ├── 8331dc77b39f15b3dbc7a0115edc8a07.bin │ │ │ ├── 837278b655560e490c514495960dcb50.bin │ │ │ ├── 84fbf905ae622edcd574189990797d45.bin │ │ │ ├── 855eca90823e9163dfa9d2715906b75b.bin │ │ │ ├── 8570f77946372a5849bada49e3b05196.bin │ │ │ ├── 8597e55729a3a480ac60c03d9df0107c.bin │ │ │ ├── 8706128bfc516e99d8de2f78a83ac5f8.bin │ │ │ ├── 873607cf0a8d291346bb3397fa747ba7.bin │ │ │ ├── 87b22cbeb8f05d093734fc8bf6e230af.bin │ │ │ ├── 87dbfea7004c37d66c5b9766546021b1.bin │ │ │ ├── 87fbfc0b81513a8a2df7a16169e8a982.bin │ │ │ ├── 88021319de896b722505703d0bc8e43b.bin │ │ │ ├── 88694db5e1441d2952548755c67d9258.bin │ │ │ ├── 886b2a8cb6c0b1401f5842fbcc61af3c.bin │ │ │ ├── 8878f079eef14d5a3ab5fa9b273023c0.bin │ │ │ ├── 89122e530c22c0bc59efa7d5b44315e3.bin │ │ │ ├── 8920109677bd6767e50aeec9c803cae4.bin │ │ │ ├── 894ce6fbe9a63bf52c16109e72a279f8.bin │ │ │ ├── 895a7eba9e882e78d24b088528a35962.bin │ │ │ ├── 8a6d01e7bc5a38bf510eb066e99ba94d.bin │ │ │ ├── 8ab3f0a596895ad9941cc759c8e2e2ff.bin │ │ │ ├── 8b246601b42f92fb0c18b7a9276c4cc3.bin │ │ │ ├── 8bd333519b797c61e27730aa519ddf78.bin │ │ │ ├── 8d8fc3f0e37393d93eae38b8fec7b234.bin │ │ │ ├── 8dc6bafe05a196fcd741b1485c0c12b1.bin │ │ │ ├── 8f0a17b5be19b9c12431c578e67a3360.bin │ │ │ └── 8f517a82fa20fbe74d6504bc6758416c.bin │ │ ├── 9 │ │ │ ├── 9058b43cdeede75fb438359fc6f6f685.bin │ │ │ ├── 92025829217660fffcc558653704f389.bin │ │ │ ├── 924b70813c6e6d8de2d577246687d4e3.bin │ │ │ ├── 93c452036b4ed63e9f6836a0b5b3d33b.bin │ │ │ ├── 93ce97b027605670bdcc233e83ad3607.bin │ │ │ ├── 94e8607992e781d8f862fbcc3243a617.bin │ │ │ ├── 9528e5b29a14f15d2f1256415b520ae2.bin │ │ │ ├── 95aef77dd30bc325ffa280f0ab5ea63f.bin │ │ │ ├── 960a931691f75da38b73b5c3ec12474d.bin │ │ │ ├── 960ef56992f7af929971883901ad35cf.bin │ │ │ ├── 97445ad91490c7f1925c4f8d153ac56f.bin │ │ │ ├── 976aa079d70b3fd5275de113d10cacdf.bin │ │ │ ├── 9802796fbdb30d56d8d7fe91cdb170d0.bin │ │ │ ├── 9820a5580713eebad3db8016e1074b9b.bin │ │ │ ├── 989755075efcdfa9dc2e30d5bc1dee6b.bin │ │ │ ├── 992a6f2ee96984a795c9f5ff24b38253.bin │ │ │ ├── 9a33f8f0723c394c43fa1a63f8b00220.bin │ │ │ ├── 9a4885ddd8b8fad0e676d552fa67df8a.bin │ │ │ ├── 9abefe124a0fcfe6c8e0ff9114758a9e.bin │ │ │ ├── 9b27565443e43456c4a09025b63aa43b.bin │ │ │ ├── 9b43b38b4f7de1763075029bce12589c.bin │ │ │ ├── 9c4aed60492dcd3a15dd9b55963e8255.bin │ │ │ ├── 9c6f93f178aa2e2aa0c1956479a2a823.bin │ │ │ ├── 9c92421cc540a63f3c4fedde6ffa3394.bin │ │ │ ├── 9cc1d63f2bec9c48581dad9d9036db48.bin │ │ │ ├── 9cc466d21f1c85e2be3b888128237161.bin │ │ │ ├── 9d36eeef206976478634333278c98cb3.bin │ │ │ ├── 9e5aa581a3cd41e75c978cd862a1115e.bin │ │ │ └── 9fdf851676066d903dd8b76383d41e9e.bin │ │ ├── a │ │ │ ├── a05637065e78cb8f929f20aa193d33a1.bin │ │ │ ├── a0cd01e614000214d8dfed7f8eecc3e7.bin │ │ │ ├── a0d05e376134c5065d5b4e4750732782.bin │ │ │ ├── a1d6879d9f23f989669ce021918c6d73.bin │ │ │ ├── a1ec28a4b1dbee29c37e7b6bb9be8b4f.bin │ │ │ ├── a1fb46b02160f2a8ecb288459416e529.bin │ │ │ ├── a2ee44e583e522873312399f369979ff.bin │ │ │ ├── a2f840ec98390ccfda95d6925fb1697c.bin │ │ │ ├── a45a59a084d58b965c51e7a6a9369614.bin │ │ │ ├── a578c690b2488a3ac3b599a636ca8dfc.bin │ │ │ ├── a5e12b978304a14417176fb04b4d4683.bin │ │ │ ├── a72e915148b7c77090da6f3eb769f6b9.bin │ │ │ ├── a812c030d94e34336ec246abc418ffa2.bin │ │ │ ├── a85959fb7399a079fbf70e7fd566d12e.bin │ │ │ ├── a8ca4d4e7b67e86b1161ace7f3e15adb.bin │ │ │ ├── a8e2aec0f4284a127a999db1defcf9ee.bin │ │ │ ├── a8f4fc61fcb249e568caeb7c9873dfef.bin │ │ │ ├── a9186761153637e480e715431bb6d239.bin │ │ │ ├── a94d9c0c3dc0d33f95d784ddeabc10b3.bin │ │ │ ├── a997172365353f775a6b136b156ee9ad.bin │ │ │ ├── a9d09b9b4ebb7a4e4a8e80755b507fec.bin │ │ │ ├── aa00539aa653743b0ab8d37278e7099d.bin │ │ │ ├── aa5acf37ae3eb3e14674cd02c014e19d.bin │ │ │ ├── aa9f6f1a6bf1d4ce2d376f93dcf5025d.bin │ │ │ ├── ab8d7f5a6bd1e395aab7c733e06eb727.bin │ │ │ ├── abd73f93e0c2e1c7736b52b74482b627.bin │ │ │ ├── abee118b8916c335e15f207b74c72eb1.bin │ │ │ ├── ac972f025216e78af79dc188e83cc9c5.bin │ │ │ ├── ad59ce2c30217f73ca761c9375bbe560.bin │ │ │ ├── ada4ec74d3db89d44acc07af3b8b84e2.bin │ │ │ ├── adb32beadddee80abc9589344f51b524.bin │ │ │ ├── addac0df1d3ddb623bcf21a500e0d2ce.bin │ │ │ ├── ae47349558f7a225c1f8e0be72f7583e.bin │ │ │ ├── af4d04d9ed1e1bd4c983492116d1ecd0.bin │ │ │ ├── af663f64d0c82690f93803a46367247c.bin │ │ │ ├── af7a057aaa51bc11f5d95498fa6ea1e7.bin │ │ │ └── afe0e4992c82ea8f72f8b779cf04861f.bin │ │ ├── b │ │ │ ├── b0b7c8a83bac4b754133b2fcda3f8603.bin │ │ │ ├── b10d48ac47656ee2bdd5ea6ea1a04995.bin │ │ │ ├── b12ff100e3f9b114f16217713f6fb0bd.bin │ │ │ ├── b188a9e64577f3d192c07134a40ffc9b.bin │ │ │ ├── b19c88161566a18e76d17da70bec7a66.bin │ │ │ ├── b1d3d6e64a73587b898245740d1b5ea8.bin │ │ │ ├── b1e1b99cd78e723c3801f9a1c9b6f361.bin │ │ │ ├── b1ec1acff72043ef3903c82647451a21.bin │ │ │ ├── b23956815d6f954e8997c5f2f1de1726.bin │ │ │ ├── b34cd59a3345cdd538854760c663fc96.bin │ │ │ ├── b37683370e2bc411269928b910dbc5f9.bin │ │ │ ├── b3ce232c2b57586ab99525a8b0139483.bin │ │ │ ├── b3f623c35b2845b43254db63e8e34a4f.bin │ │ │ ├── b3ffd0204b9787338a4494297878c7e9.bin │ │ │ ├── b4729870431ff73ee60cc6a71104a4d6.bin │ │ │ ├── b497f8f5cebd550ed83a5944ebda073c.bin │ │ │ ├── b51cde023fe04a2d497e3eebf0453d97.bin │ │ │ ├── b59dd5add98a1d86bf82965da780aebd.bin │ │ │ ├── b6469a7f5a0b700dc32f0eb6171f9f09.bin │ │ │ ├── b734cef25f15c6a61aec4e3014f436d3.bin │ │ │ ├── b7c0d94e58743504244ffe3e93d90eae.bin │ │ │ ├── b7e6e1c6d35bd6e3fd1336d952d402c2.bin │ │ │ ├── b81c410b2e22da1d6849a3d041458d78.bin │ │ │ ├── b8339316b27cea9a247e050cc82e4ac7.bin │ │ │ ├── b87e1f4567453fdf85c6d73817c2305d.bin │ │ │ ├── b8a5f5282228005f6e8079d92cc09504.bin │ │ │ ├── b8d6bf10d972ce4b15a676988ee02c96.bin │ │ │ ├── b9c14d70adc5d239970b6b8101422739.bin │ │ │ ├── bacf18530380a9dda1f8513d90c02cda.bin │ │ │ ├── bc40d2c2662c7707549be3382f536ed0.bin │ │ │ ├── bcaaa75addb2b695ac7d8b6546505e3d.bin │ │ │ ├── bd177f19de5e02ae78d99a9c330805d6.bin │ │ │ ├── bd8b1a9036dfaa901601a9331c27886d.bin │ │ │ ├── bda47169460fb0f3a0e8e12525d353c2.bin │ │ │ ├── be3113f69930d34f9ddb26979c68ff22.bin │ │ │ ├── bf12eea2fef07330c83179ab6cb7193d.bin │ │ │ ├── bf3efc23ced2f02b25371afa1cf27305.bin │ │ │ └── bf74c98c2dbb194396e4d23f4fbeef98.bin │ │ ├── c │ │ │ ├── c113cc97ff1f3b7139e24ec98b011c02.bin │ │ │ ├── c200d7be7c34d3b1491d984c12aed9bd.bin │ │ │ ├── c2d64661e1a7d8f5d93a7a37039983fc.bin │ │ │ ├── c31d4ff31be5b38829252a6c1f18a29e.bin │ │ │ ├── c385491c1729d8fa38aa4996b8ece640.bin │ │ │ ├── c3a1bb1918392f5b43d68757f875689c.bin │ │ │ ├── c3ae052efcf86384c4cedba600805a32.bin │ │ │ ├── c3ce97618321d3a510412dbbc9c6c739.bin │ │ │ ├── c45ae2e38172ccf5ef1842f711eefe22.bin │ │ │ ├── c4f4740837daa8c3e8aebd5fab6ba3d5.bin │ │ │ ├── c66f777e6388b61c1aa3a3369698e129.bin │ │ │ ├── c6b85ae9c72194ec967f4feff0298496.bin │ │ │ ├── c76cc691a790b711858930daea61d5fe.bin │ │ │ ├── c854129632fa5fe5dfee84313923f8a0.bin │ │ │ ├── c8872c0e4d2b2c320969b9d7939a4db3.bin │ │ │ ├── c9b28be81e296866652be227fccde50a.bin │ │ │ ├── ca5b0a5d139e9d53427afc0ad72b6e6b.bin │ │ │ ├── ca7f0050521efe85508dab04a71489a6.bin │ │ │ ├── cb1ac00288dbfda92dd6ae9f9b962c63.bin │ │ │ ├── cb71f2b41fd2a38266d5d0d8f2c30a19.bin │ │ │ ├── cbb74ad3c643269db029592a69481104.bin │ │ │ ├── cbdaa238533d566bede62944d5f2a0e6.bin │ │ │ ├── cc41b000bcf9a261e1b6d7ead8221fb3.bin │ │ │ ├── cc9a01af1a7cc4667e41c9545e7d6ef4.bin │ │ │ ├── cd17398f63dac33e8a8d3b8409aa7b44.bin │ │ │ ├── cd53aae232f6010c6baa59ae6be608d0.bin │ │ │ ├── cd890178f634f33a7edf5c7d8ebf5953.bin │ │ │ ├── cd9535ecee91698d195a95a8ede0be6b.bin │ │ │ ├── cf52bf5d7cb1a92f6323c4b04ff60e53.bin │ │ │ └── cf8df025597c1e051bf18332b7f6b7d0.bin │ │ ├── d │ │ │ ├── d108053d0a8cacc54350cac4940d3fd1.bin │ │ │ ├── d144c0096778d14db65197304fb8beaa.bin │ │ │ ├── d17d4faa2016bc519c8e621fbaac5954.bin │ │ │ ├── d249e62f1b9c8ba51862efe61596f2df.bin │ │ │ ├── d328f899394d37294b7fdc2c0b89dc86.bin │ │ │ ├── d40db428fefce7ef274d5bb02f22f504.bin │ │ │ ├── d49222289a3ea8fb58a30dbe4f8d0f42.bin │ │ │ ├── d4b83f34b33e4a404b9cc6aae174f48f.bin │ │ │ ├── d53c319a75d1ac237bf912e6318394ea.bin │ │ │ ├── d574ba999252fbd42555e7b56b133aa0.bin │ │ │ ├── d5c737d1bdb789595a377056a64e249e.bin │ │ │ ├── d6dd0dcff2c22cc3a95b27b90c052332.bin │ │ │ ├── d6e021ab03e42fe10b145ec4a7c8ff1d.bin │ │ │ ├── d72fe87e6a614fa7561a774da3541f56.bin │ │ │ ├── d80565c8a8ee19a7cf5cba06eb10a88a.bin │ │ │ ├── d816e3240ba2561e21c9ea42efdee018.bin │ │ │ ├── d9254fe3a667012e407225c31176b010.bin │ │ │ ├── d98ff1b1a22e664b8cedd4c0b26afe26.bin │ │ │ ├── d9b6efa8f8db2b92c94063c2c53306fa.bin │ │ │ ├── d9da090b992f51ad1ecdc58d7499c17c.bin │ │ │ ├── daa42b3bf8d73adadca40bb7a0bcdd7e.bin │ │ │ ├── dbc60937b4fe7aa5ea04dccd29cd1ef8.bin │ │ │ ├── dc81fb191f202e2a8e1749b6c04cebf0.bin │ │ │ ├── dc9264b8b48deed5b3e9d29a394335e8.bin │ │ │ ├── dd2edbd53507fc2b73a115b936a8fe8c.bin │ │ │ └── df56177b813f6a7fd8bba61f06e969d9.bin │ │ ├── e │ │ │ ├── e140062becc6f6985b2e4844cdc8db1e.bin │ │ │ ├── e1bd58e36276e078291c728409d86763.bin │ │ │ ├── e24697354fb639d1db00cd3adc675498.bin │ │ │ ├── e30254ebdf980c9284e8201a950910e9.bin │ │ │ ├── e3a989887f36f6a17c94703737d0a089.bin │ │ │ ├── e3f3a2719a94b64acbf51835e8d141d0.bin │ │ │ ├── e413588be2b664b19172ca375f5a63fa.bin │ │ │ ├── e4533e280e32fa47282dde0138ae01bc.bin │ │ │ ├── e49ff518ffd5a925dd36c89259d70758.bin │ │ │ ├── e53313bfc3a3ab3f4fd42a839ae546a6.bin │ │ │ ├── e551ba3d60f05ae8920c288b86dc717d.bin │ │ │ ├── e59646cec2ff5004086a71f01c98e4f0.bin │ │ │ ├── e70613959588e6b0d6d290b5409e6992.bin │ │ │ ├── e81df5d639639fa995e47282620b7ae9.bin │ │ │ ├── e84915d393f2611944c5b6413b1a2d89.bin │ │ │ ├── e8a96bb9bd3eaaa71f8fe336e35fa339.bin │ │ │ ├── e9879f820b6cc81dcca722141e550224.bin │ │ │ ├── eb2a3f6f2d9343997400bc3ab8ace360.bin │ │ │ ├── ec28053cf4b01f761b9c89e9f92b7f69.bin │ │ │ ├── ecee98dbd8d270d6e7e3cc802ebac56b.bin │ │ │ ├── ed246def362528b145490ce9f341253f.bin │ │ │ ├── ed30889e5af9bd2b7712f449f5d31bdc.bin │ │ │ ├── edaf29184277a8b2e61030a06560cfff.bin │ │ │ ├── ee0dddfd0df53b8616cb6f52b596521c.bin │ │ │ ├── ee25e959c1fe56483de18657d67604b0.bin │ │ │ ├── ee857e1f1c309cef36e0b17f0dd96b55.bin │ │ │ ├── ef20d0b72c4aa9d440ed75f3c8229cb4.bin │ │ │ ├── efb46809264d65fa4ad5d2519d70ccdd.bin │ │ │ └── efd126d45ec32c428f0f3a91ee7d1c9c.bin │ │ └── f │ │ │ ├── f15cdb41ac5a3b4c3b0d77a215579860.bin │ │ │ ├── f22a9cfd5e7644aa17cc5ac26e03a4d0.bin │ │ │ ├── f39fb01f0cdd1a1bfea2396190f6ca90.bin │ │ │ ├── f40e5a5397cf6e781027b66ee51dd4be.bin │ │ │ ├── f46bb5853d84e85d2a6d107e2251ebdf.bin │ │ │ ├── f4b8662b6183aa79c5b96b52b9bcb073.bin │ │ │ ├── f5013d72eb826147267f834fa9ec3ee8.bin │ │ │ ├── f55baafbb03b315b20862ab76c94762c.bin │ │ │ ├── f5e6ada8db34cabc2579b261e8dcd56a.bin │ │ │ ├── f8a34870c38d2c68352923838dd9774a.bin │ │ │ ├── f8cc5119639be1c556dd262f06a2176c.bin │ │ │ ├── f8d733baf24e20736e72de7fad3a6f99.bin │ │ │ ├── f96918064c4a8cfd1d367409b19218e8.bin │ │ │ ├── f9aeb8aec4d6ca7e782a10b819dad207.bin │ │ │ ├── f9d979b6ba8c94d60202cf8dd088880d.bin │ │ │ ├── fa13ea32ddea8200e85f87bceb24c66c.bin │ │ │ ├── fa7b54120a15393a0c71a4fe21f74179.bin │ │ │ ├── fb47963ef5e3bf84586ebf66a9b7afaa.bin │ │ │ ├── fb6531c6179b57303fd45922b0f5f0c4.bin │ │ │ ├── fc048a7598ba6a21e7623796ed323001.bin │ │ │ ├── fc97c67171e0a8479f9bbcf6879491bc.bin │ │ │ ├── fd8c32338b62a1b6662d24a6d4231e23.bin │ │ │ └── fe031212836a3df6cf117173dcd3d0f6.bin │ ├── UnityAssemblies │ │ ├── Mono.Cecil.dll │ │ ├── SyntaxTree.VisualStudio.Unity.Bridge.dll │ │ ├── UnityEditor.Advertisements.dll │ │ ├── UnityEditor.Advertisements.xml │ │ ├── UnityEditor.Android.Extensions.dll │ │ ├── UnityEditor.AppleTV.Extensions.dll │ │ ├── UnityEditor.EditorTestsRunner.dll │ │ ├── UnityEditor.EditorTestsRunner.xml │ │ ├── UnityEditor.Graphs.dll │ │ ├── UnityEditor.LinuxStandalone.Extensions.dll │ │ ├── UnityEditor.Metro.Extensions.dll │ │ ├── UnityEditor.Networking.dll │ │ ├── UnityEditor.Networking.xml │ │ ├── UnityEditor.OSXStandalone.Extensions.dll │ │ ├── UnityEditor.SamsungTV.Extensions.dll │ │ ├── UnityEditor.Tizen.Extensions.dll │ │ ├── UnityEditor.TreeEditor.dll │ │ ├── UnityEditor.TreeEditor.xml │ │ ├── UnityEditor.UI.dll │ │ ├── UnityEditor.UI.xml │ │ ├── UnityEditor.WebGL.Extensions.dll │ │ ├── UnityEditor.WindowsStandalone.Extensions.dll │ │ ├── UnityEditor.dll │ │ ├── UnityEditor.iOS.Extensions.Common.dll │ │ ├── UnityEditor.iOS.Extensions.Xcode.dll │ │ ├── UnityEditor.iOS.Extensions.dll │ │ ├── UnityEditor.xml │ │ ├── UnityEngine.Networking.dll │ │ ├── UnityEngine.Networking.xml │ │ ├── UnityEngine.UI.dll │ │ ├── UnityEngine.UI.xml │ │ ├── UnityEngine.dll │ │ ├── UnityEngine.xml │ │ ├── nunit.framework.dll │ │ ├── nunit.framework.xml │ │ └── version.txt │ ├── assetDatabase3 │ ├── expandedItems │ ├── metadata │ │ ├── 11 │ │ │ ├── 112d8d572cd99f44f8b5909ed13662e1 │ │ │ └── 112d8d572cd99f44f8b5909ed13662e1.info │ │ ├── 16 │ │ │ ├── 16776713932be4046a13123cbe2fc362 │ │ │ ├── 16776713932be4046a13123cbe2fc362.info │ │ │ ├── 1697b37a79347b34da9dde71eefd6d7f │ │ │ └── 1697b37a79347b34da9dde71eefd6d7f.info │ │ ├── 18 │ │ │ ├── 18a772843545641448db06de29e065e4 │ │ │ └── 18a772843545641448db06de29e065e4.info │ │ ├── 22 │ │ │ ├── 22aad0974c72d964886d5809ffb1eec2 │ │ │ ├── 22aad0974c72d964886d5809ffb1eec2.info │ │ │ ├── 22d8dd03c8210394696170e43e33c4bf │ │ │ └── 22d8dd03c8210394696170e43e33c4bf.info │ │ ├── 23 │ │ │ ├── 23f1e3893598c244884a282aea57b57c │ │ │ └── 23f1e3893598c244884a282aea57b57c.info │ │ ├── 24 │ │ │ ├── 2493ad87fe44fb34faf756ce387d21db │ │ │ └── 2493ad87fe44fb34faf756ce387d21db.info │ │ ├── 28 │ │ │ ├── 28277a446accf7a41b8e786dfef41736 │ │ │ ├── 28277a446accf7a41b8e786dfef41736.info │ │ │ ├── 289913d76c35d264c823b5be17391279 │ │ │ └── 289913d76c35d264c823b5be17391279.info │ │ ├── 34 │ │ │ ├── 3407f6be02c6779428eccc88cbe5b50b │ │ │ └── 3407f6be02c6779428eccc88cbe5b50b.info │ │ ├── 37 │ │ │ ├── 37977e72d61d92044a40442b6dda7433 │ │ │ └── 37977e72d61d92044a40442b6dda7433.info │ │ ├── 38 │ │ │ ├── 38ec01ad43766614da12dde0201aec0b │ │ │ └── 38ec01ad43766614da12dde0201aec0b.info │ │ ├── 39 │ │ │ ├── 3962afa01f5b1e3418eb25d80f6ebc3f │ │ │ └── 3962afa01f5b1e3418eb25d80f6ebc3f.info │ │ ├── 41 │ │ │ ├── 41ad6c52eb43a7941bf0d9a6966c9b7a │ │ │ └── 41ad6c52eb43a7941bf0d9a6966c9b7a.info │ │ ├── 43 │ │ │ ├── 4399b5d97d7c301429606302b69b78b4 │ │ │ ├── 4399b5d97d7c301429606302b69b78b4.info │ │ │ ├── 43deccaa7cc843447a74a152e0a97304 │ │ │ └── 43deccaa7cc843447a74a152e0a97304.info │ │ ├── 44 │ │ │ ├── 4410d12cb096f7144b847d01de9abb33 │ │ │ ├── 4410d12cb096f7144b847d01de9abb33.info │ │ │ ├── 449321fc5f1ed014892a9e19125310e9 │ │ │ └── 449321fc5f1ed014892a9e19125310e9.info │ │ ├── 52 │ │ │ ├── 5213b382a880f224d82e5fdb7d84b6ed │ │ │ ├── 5213b382a880f224d82e5fdb7d84b6ed.info │ │ │ ├── 5232ac57491b66a4f892f505f47ea1de │ │ │ └── 5232ac57491b66a4f892f505f47ea1de.info │ │ ├── 55 │ │ │ ├── 5586692cf6a5e2c4daf5f08cc703dee0 │ │ │ ├── 5586692cf6a5e2c4daf5f08cc703dee0.info │ │ │ ├── 55ea2d676ab6db740a84122416ac6c34 │ │ │ └── 55ea2d676ab6db740a84122416ac6c34.info │ │ ├── 56 │ │ │ ├── 5607cec5b5f89844c9fba3accb983bc6 │ │ │ ├── 5607cec5b5f89844c9fba3accb983bc6.info │ │ │ ├── 5616c9cf29c5d9d4eb489f314493cebd │ │ │ └── 5616c9cf29c5d9d4eb489f314493cebd.info │ │ ├── 58 │ │ │ ├── 58b53e9eb44ac3d428a2b4ead3570014 │ │ │ └── 58b53e9eb44ac3d428a2b4ead3570014.info │ │ ├── 59 │ │ │ ├── 59e8d123c178eee4287dc21afc9ef4fc │ │ │ └── 59e8d123c178eee4287dc21afc9ef4fc.info │ │ ├── 61 │ │ │ ├── 61d4e9a7285dc8647a84013aa5bbe694 │ │ │ └── 61d4e9a7285dc8647a84013aa5bbe694.info │ │ ├── 62 │ │ │ ├── 62b14063af29f744cad55a906b48dfd8 │ │ │ └── 62b14063af29f744cad55a906b48dfd8.info │ │ ├── 67 │ │ │ ├── 67f0790e15afbe44f92c771c6586667d │ │ │ └── 67f0790e15afbe44f92c771c6586667d.info │ │ ├── 71 │ │ │ ├── 71af80584142f12498998c1e64b130d1 │ │ │ ├── 71af80584142f12498998c1e64b130d1.info │ │ │ ├── 71db585d432517643892c55eafa37433 │ │ │ └── 71db585d432517643892c55eafa37433.info │ │ ├── 72 │ │ │ ├── 7211cf0b15142b94d976c2f895813560 │ │ │ ├── 7211cf0b15142b94d976c2f895813560.info │ │ │ ├── 72bbee9be396d024c9165f508ce44b3a │ │ │ └── 72bbee9be396d024c9165f508ce44b3a.info │ │ ├── 73 │ │ │ ├── 739bbd9f364b4268874f9fd86ab3beef │ │ │ └── 739bbd9f364b4268874f9fd86ab3beef.info │ │ ├── 78 │ │ │ ├── 78b81d670f87ce24b9d2fbc59a23610e │ │ │ └── 78b81d670f87ce24b9d2fbc59a23610e.info │ │ ├── 80 │ │ │ ├── 80a3616ca19596e4da0f10f14d241e9f │ │ │ └── 80a3616ca19596e4da0f10f14d241e9f.info │ │ ├── 83 │ │ │ ├── 83aa51ce31580a3419edd15682cd3d36 │ │ │ ├── 83aa51ce31580a3419edd15682cd3d36.info │ │ │ ├── 83ada186b661d6047b6ac2a9ca219d17 │ │ │ └── 83ada186b661d6047b6ac2a9ca219d17.info │ │ ├── 85 │ │ │ ├── 852e56802eb941638acbb491814497b0 │ │ │ ├── 852e56802eb941638acbb491814497b0.info │ │ │ ├── 85b4f18386e370d4da4b7cf45c834e7e │ │ │ └── 85b4f18386e370d4da4b7cf45c834e7e.info │ │ ├── 86 │ │ │ ├── 86e0bb16370c6964ab403a6ec9e92dbd │ │ │ ├── 86e0bb16370c6964ab403a6ec9e92dbd.info │ │ │ ├── 86f0770bd757058498ff15a6eced8bb7 │ │ │ └── 86f0770bd757058498ff15a6eced8bb7.info │ │ ├── 87 │ │ │ ├── 870353891bb340e2b2a9c8707e7419ba │ │ │ └── 870353891bb340e2b2a9c8707e7419ba.info │ │ ├── 88 │ │ │ ├── 88e0e04861ac072438e1060bff47b659 │ │ │ ├── 88e0e04861ac072438e1060bff47b659.info │ │ │ └── 88e0e04861ac072438e1060bff47b659.resource │ │ ├── 90 │ │ │ ├── 90625c1641134674fbcf8597c774c19f │ │ │ └── 90625c1641134674fbcf8597c774c19f.info │ │ ├── 92 │ │ │ ├── 9218cf97bf04a2845865b8ec6e36a4da │ │ │ ├── 9218cf97bf04a2845865b8ec6e36a4da.info │ │ │ ├── 92b49e9c5c03ba04c86fcaf2997d62ef │ │ │ └── 92b49e9c5c03ba04c86fcaf2997d62ef.info │ │ ├── 93 │ │ │ ├── 93d26bb7690bc4542b7b856f65de33fe │ │ │ ├── 93d26bb7690bc4542b7b856f65de33fe.info │ │ │ ├── 93e95ca71969e4f4faec783cf301e86b │ │ │ └── 93e95ca71969e4f4faec783cf301e86b.info │ │ ├── 97 │ │ │ ├── 97decbdab0634cdd991f8d23ddf0dead │ │ │ └── 97decbdab0634cdd991f8d23ddf0dead.info │ │ ├── 98 │ │ │ ├── 9882b307d2d8a8849a43cb2f50b7c252 │ │ │ └── 9882b307d2d8a8849a43cb2f50b7c252.info │ │ ├── 00 │ │ │ ├── 00000000000000001000000000000000 │ │ │ ├── 00000000000000001000000000000000.info │ │ │ ├── 00000000000000002000000000000000 │ │ │ ├── 00000000000000002000000000000000.info │ │ │ ├── 00000000000000003000000000000000 │ │ │ ├── 00000000000000003000000000000000.info │ │ │ ├── 00000000000000004000000000000000 │ │ │ ├── 00000000000000004000000000000000.info │ │ │ ├── 00000000000000004100000000000000 │ │ │ ├── 00000000000000004100000000000000.info │ │ │ ├── 00000000000000005000000000000000 │ │ │ ├── 00000000000000005000000000000000.info │ │ │ ├── 00000000000000005100000000000000 │ │ │ ├── 00000000000000005100000000000000.info │ │ │ ├── 00000000000000006000000000000000 │ │ │ ├── 00000000000000006000000000000000.info │ │ │ ├── 00000000000000006100000000000000 │ │ │ ├── 00000000000000006100000000000000.info │ │ │ ├── 00000000000000007000000000000000 │ │ │ ├── 00000000000000007000000000000000.info │ │ │ ├── 00000000000000007100000000000000 │ │ │ ├── 00000000000000007100000000000000.info │ │ │ ├── 00000000000000008000000000000000 │ │ │ ├── 00000000000000008000000000000000.info │ │ │ ├── 00000000000000008100000000000000 │ │ │ ├── 00000000000000008100000000000000.info │ │ │ ├── 00000000000000009000000000000000 │ │ │ ├── 00000000000000009000000000000000.info │ │ │ ├── 0000000000000000a000000000000000 │ │ │ ├── 0000000000000000a000000000000000.info │ │ │ ├── 0000000000000000a100000000000000 │ │ │ ├── 0000000000000000a100000000000000.info │ │ │ ├── 0000000000000000b000000000000000 │ │ │ ├── 0000000000000000b000000000000000.info │ │ │ ├── 0000000000000000c000000000000000 │ │ │ └── 0000000000000000c000000000000000.info │ │ ├── 02 │ │ │ ├── 023f63cdf08ebd2458f3bd739500f297 │ │ │ └── 023f63cdf08ebd2458f3bd739500f297.info │ │ ├── 06 │ │ │ ├── 06db2d2e18d0fa04887001e86f935648 │ │ │ └── 06db2d2e18d0fa04887001e86f935648.info │ │ ├── 07 │ │ │ ├── 07147bd5c33c64e4aa5bffa49e7f7ff4 │ │ │ ├── 07147bd5c33c64e4aa5bffa49e7f7ff4.info │ │ │ ├── 07a1a9d0f0e7a3547ad74ae400f7c417 │ │ │ └── 07a1a9d0f0e7a3547ad74ae400f7c417.info │ │ ├── 0a │ │ │ ├── 0a15581816f08c044845aaa7c9635c9d │ │ │ ├── 0a15581816f08c044845aaa7c9635c9d.info │ │ │ ├── 0a760b816f077114893912712122cbd5 │ │ │ ├── 0a760b816f077114893912712122cbd5.info │ │ │ ├── 0ac0555fe7eca7c4db4bc172218ff5dd │ │ │ └── 0ac0555fe7eca7c4db4bc172218ff5dd.info │ │ ├── 0b │ │ │ ├── 0b0bb56ccf7bf50479d1b04ec343dfe9 │ │ │ └── 0b0bb56ccf7bf50479d1b04ec343dfe9.info │ │ ├── 0c │ │ │ ├── 0c45b6b556a38f54a99f19ef0dfac8f5 │ │ │ └── 0c45b6b556a38f54a99f19ef0dfac8f5.info │ │ ├── 0e │ │ │ ├── 0eef5e52921e1c848a34a55456d33971 │ │ │ └── 0eef5e52921e1c848a34a55456d33971.info │ │ ├── 1a │ │ │ ├── 1a50f6da0ce602f4483f3372a65df0c8 │ │ │ └── 1a50f6da0ce602f4483f3372a65df0c8.info │ │ ├── 1b │ │ │ ├── 1bb701cb8945b194bb98077b0b3f8d6b │ │ │ └── 1bb701cb8945b194bb98077b0b3f8d6b.info │ │ ├── 1c │ │ │ ├── 1c5ddfad14dc79a428838fc15b24be72 │ │ │ ├── 1c5ddfad14dc79a428838fc15b24be72.info │ │ │ ├── 1c5e731f57fe08741bde345ab6f419a9 │ │ │ ├── 1c5e731f57fe08741bde345ab6f419a9.info │ │ │ ├── 1cfbd925fa6070f42bdb724e69467f72 │ │ │ └── 1cfbd925fa6070f42bdb724e69467f72.info │ │ ├── 2b │ │ │ ├── 2b4f2270ef08ada4fbc2a40fcb6ddbd1 │ │ │ ├── 2b4f2270ef08ada4fbc2a40fcb6ddbd1.info │ │ │ ├── 2b87ecaa91b71b74aac8a7712fb3b24e │ │ │ └── 2b87ecaa91b71b74aac8a7712fb3b24e.info │ │ ├── 2e │ │ │ ├── 2e5c1a5eb7c5683409c29c43435c42be │ │ │ └── 2e5c1a5eb7c5683409c29c43435c42be.info │ │ ├── 3b │ │ │ ├── 3b222c1193b5ca5429817d96c177e8c8 │ │ │ ├── 3b222c1193b5ca5429817d96c177e8c8.info │ │ │ ├── 3b889fa80968c9b4cb4c49b62aeaa8a0 │ │ │ └── 3b889fa80968c9b4cb4c49b62aeaa8a0.info │ │ ├── 3c │ │ │ ├── 3c0ad459c1534645b5d603b7cc258f97 │ │ │ └── 3c0ad459c1534645b5d603b7cc258f97.info │ │ ├── 3e │ │ │ ├── 3e0ed9b4ff283104d8f8b909938e394a │ │ │ └── 3e0ed9b4ff283104d8f8b909938e394a.info │ │ ├── 3f │ │ │ ├── 3f3ce42e2dfe64147b04fe41c8295c81 │ │ │ ├── 3f3ce42e2dfe64147b04fe41c8295c81.info │ │ │ ├── 3fa9cb5a82be8c748a811d85ef66a2dd │ │ │ └── 3fa9cb5a82be8c748a811d85ef66a2dd.info │ │ ├── 4a │ │ │ ├── 4a918a1030d4b624e8c621214b90fbb5 │ │ │ └── 4a918a1030d4b624e8c621214b90fbb5.info │ │ ├── 4b │ │ │ ├── 4b19f98484ed83547b6507ca7aa668f5 │ │ │ ├── 4b19f98484ed83547b6507ca7aa668f5.info │ │ │ ├── 4b43234cfaeb3a54289c601e53c09e0c │ │ │ └── 4b43234cfaeb3a54289c601e53c09e0c.info │ │ ├── 4f │ │ │ ├── 4f0e77799f2b1f54fb352b4c6235b812 │ │ │ └── 4f0e77799f2b1f54fb352b4c6235b812.info │ │ ├── 5a │ │ │ ├── 5a4e62ff683b4f24ca566098d78a976d │ │ │ └── 5a4e62ff683b4f24ca566098d78a976d.info │ │ ├── 5b │ │ │ ├── 5bbfda80ae2fb0846be5cb8564a4bb57 │ │ │ └── 5bbfda80ae2fb0846be5cb8564a4bb57.info │ │ ├── 5f │ │ │ ├── 5f32cd94baa94578a686d4b9d6b660f7 │ │ │ └── 5f32cd94baa94578a686d4b9d6b660f7.info │ │ ├── 6b │ │ │ ├── 6b98a9df94d444247bd74b0d52613f0a │ │ │ ├── 6b98a9df94d444247bd74b0d52613f0a.info │ │ │ ├── 6bb3cbef6823b2240a2ca8ebdc0632c4 │ │ │ └── 6bb3cbef6823b2240a2ca8ebdc0632c4.info │ │ ├── 6c │ │ │ ├── 6cd9cf6966c68134982bb72304fcace5 │ │ │ └── 6cd9cf6966c68134982bb72304fcace5.info │ │ ├── 6d │ │ │ ├── 6d90f573e2bd3f64eb290bf708d4807f │ │ │ └── 6d90f573e2bd3f64eb290bf708d4807f.info │ │ ├── 6e │ │ │ ├── 6e869474838ea8b469df87b00c7849cc │ │ │ └── 6e869474838ea8b469df87b00c7849cc.info │ │ ├── 7a │ │ │ ├── 7a00af140ec12b04d8054ed5fc76acad │ │ │ └── 7a00af140ec12b04d8054ed5fc76acad.info │ │ ├── 7c │ │ │ ├── 7c444d1fb0811574fbd4ce3f04c055c6 │ │ │ ├── 7c444d1fb0811574fbd4ce3f04c055c6.info │ │ │ ├── 7cbab2be89b54486bbd23a6fe637d30e │ │ │ └── 7cbab2be89b54486bbd23a6fe637d30e.info │ │ ├── 7d │ │ │ ├── 7d03cc07b89519e45bd8517c28d9a225 │ │ │ └── 7d03cc07b89519e45bd8517c28d9a225.info │ │ ├── 8c │ │ │ ├── 8cb943c3b937c524e9becb8ed6e794d0 │ │ │ └── 8cb943c3b937c524e9becb8ed6e794d0.info │ │ ├── 8d │ │ │ ├── 8dac41c31f9939140a693f7c203c0637 │ │ │ └── 8dac41c31f9939140a693f7c203c0637.info │ │ ├── 8e │ │ │ ├── 8e0cd8ed44d4412cbe0642067abc9e44 │ │ │ ├── 8e0cd8ed44d4412cbe0642067abc9e44.info │ │ │ ├── 8e705ce36298fcd4f83a198dccdbd525 │ │ │ └── 8e705ce36298fcd4f83a198dccdbd525.info │ │ ├── 8f │ │ │ ├── 8f3db20d7741628418aa8bb026d48864 │ │ │ └── 8f3db20d7741628418aa8bb026d48864.info │ │ ├── 9c │ │ │ ├── 9c1d1da2d39817b459ef0e80c44bbb25 │ │ │ └── 9c1d1da2d39817b459ef0e80c44bbb25.info │ │ ├── a2 │ │ │ ├── a232c5cabe62a9940a31ec5549ba2330 │ │ │ └── a232c5cabe62a9940a31ec5549ba2330.info │ │ ├── a3 │ │ │ ├── a37a1c2c39abb3a41904890fd7e017a9 │ │ │ └── a37a1c2c39abb3a41904890fd7e017a9.info │ │ ├── a4 │ │ │ ├── a475d62ee8cdd4749a169e3fe5f4885e │ │ │ └── a475d62ee8cdd4749a169e3fe5f4885e.info │ │ ├── a8 │ │ │ ├── a891f86a83d1fe34a9739120aa9326c2 │ │ │ └── a891f86a83d1fe34a9739120aa9326c2.info │ │ ├── aa │ │ │ ├── aa1619966c26bcf4fb1454c0486bcaef │ │ │ └── aa1619966c26bcf4fb1454c0486bcaef.info │ │ ├── ab │ │ │ ├── ab75e6089418d874ea8532cec7d7a217 │ │ │ ├── ab75e6089418d874ea8532cec7d7a217.info │ │ │ ├── ab9da8694d28e6049bc9e38cd9c90360 │ │ │ └── ab9da8694d28e6049bc9e38cd9c90360.info │ │ ├── ac │ │ │ ├── acbc41fd7c65e0b4c81858602e16182d │ │ │ └── acbc41fd7c65e0b4c81858602e16182d.info │ │ ├── ad │ │ │ ├── adebbd281f1a4ef3a30be7f21937e02f │ │ │ └── adebbd281f1a4ef3a30be7f21937e02f.info │ │ ├── b1 │ │ │ ├── b1b9a75614eac734e81faabadb746d3f │ │ │ └── b1b9a75614eac734e81faabadb746d3f.info │ │ ├── b4 │ │ │ ├── b477c78dc505ef143bb4f979a2e41061 │ │ │ ├── b477c78dc505ef143bb4f979a2e41061.info │ │ │ ├── b4a21dc65f8037440837803c2d66eda9 │ │ │ ├── b4a21dc65f8037440837803c2d66eda9.info │ │ │ ├── b4f31ec25143da44b9ef5bbe0ab66157 │ │ │ └── b4f31ec25143da44b9ef5bbe0ab66157.info │ │ ├── b5 │ │ │ ├── b556832ce068d284d82605d054542adc │ │ │ └── b556832ce068d284d82605d054542adc.info │ │ ├── b7 │ │ │ ├── b709489387ed3554997b4ec75cbf6050 │ │ │ ├── b709489387ed3554997b4ec75cbf6050.info │ │ │ ├── b70d2650d7dcdfc44890b5743430b261 │ │ │ ├── b70d2650d7dcdfc44890b5743430b261.info │ │ │ ├── b79de820f9cd3e04385f1e16c172a3c1 │ │ │ └── b79de820f9cd3e04385f1e16c172a3c1.info │ │ ├── ba │ │ │ ├── ba61dc5f57aa3764782b158253f34397 │ │ │ └── ba61dc5f57aa3764782b158253f34397.info │ │ ├── bd │ │ │ ├── bd0cad610c3234d43af3262f97ed396a │ │ │ └── bd0cad610c3234d43af3262f97ed396a.info │ │ ├── be │ │ │ ├── beb252d7d55a04144a83ae9668735af7 │ │ │ └── beb252d7d55a04144a83ae9668735af7.info │ │ ├── bf │ │ │ ├── bf40aec8a9beea8408623826e16059e1 │ │ │ ├── bf40aec8a9beea8408623826e16059e1.info │ │ │ ├── bffddfc97ed35f543868ce7ad2d17941 │ │ │ └── bffddfc97ed35f543868ce7ad2d17941.info │ │ ├── c3 │ │ │ ├── c38648a9f48c79746955ee269336a56a │ │ │ └── c38648a9f48c79746955ee269336a56a.info │ │ ├── c4 │ │ │ ├── c4f204924ddb1ed40a29bf5026b56de4 │ │ │ └── c4f204924ddb1ed40a29bf5026b56de4.info │ │ ├── c7 │ │ │ ├── c7f729a3d9d51af4ea0d85f8a53d8ec9 │ │ │ ├── c7f729a3d9d51af4ea0d85f8a53d8ec9.info │ │ │ └── c7f729a3d9d51af4ea0d85f8a53d8ec9.resource │ │ ├── c8 │ │ │ ├── c8b4c172c13dd0040bb12b56dddf4e6f │ │ │ └── c8b4c172c13dd0040bb12b56dddf4e6f.info │ │ ├── ca │ │ │ ├── ca056705e94bcea42aa021a5d1bd372c │ │ │ ├── ca056705e94bcea42aa021a5d1bd372c.info │ │ │ ├── cacdbbeb84376d646b53aaad8dae29e6 │ │ │ └── cacdbbeb84376d646b53aaad8dae29e6.info │ │ ├── cb │ │ │ ├── cbc1b59d0d621b24782d5105864e172a │ │ │ └── cbc1b59d0d621b24782d5105864e172a.info │ │ ├── cc │ │ │ ├── cc7d6c8c5efd01e4fa3ddb997493ac64 │ │ │ └── cc7d6c8c5efd01e4fa3ddb997493ac64.info │ │ ├── cd │ │ │ ├── cdd9f036750b6954e84becd850e03a05 │ │ │ └── cdd9f036750b6954e84becd850e03a05.info │ │ ├── ce │ │ │ ├── cee1b6e3e782a5f4bbca2077d547c3bd │ │ │ └── cee1b6e3e782a5f4bbca2077d547c3bd.info │ │ ├── cf │ │ │ ├── cf89b6a3ec2d36b41a1317b03c96cda3 │ │ │ └── cf89b6a3ec2d36b41a1317b03c96cda3.info │ │ ├── d2 │ │ │ ├── d2916d3d86fe95b4e94d5154f4c142a9 │ │ │ └── d2916d3d86fe95b4e94d5154f4c142a9.info │ │ ├── d3 │ │ │ ├── d33ebf83d17d9824c9b696d5e5b2d281 │ │ │ └── d33ebf83d17d9824c9b696d5e5b2d281.info │ │ ├── d6 │ │ │ ├── d64062a62b06c554ebf0907777d9fa99 │ │ │ └── d64062a62b06c554ebf0907777d9fa99.info │ │ ├── d8 │ │ │ ├── d84cf7dd93c95b8429dd9b3caf48ef07 │ │ │ ├── d84cf7dd93c95b8429dd9b3caf48ef07.info │ │ │ ├── d8b20de0daf5a9543af6a99eccc71c4a │ │ │ └── d8b20de0daf5a9543af6a99eccc71c4a.info │ │ ├── de │ │ │ ├── deea031325a2b174dbd292da7cc653a7 │ │ │ └── deea031325a2b174dbd292da7cc653a7.info │ │ ├── df │ │ │ ├── df96ed3ee6b5e17428e1fe1d7879a2ff │ │ │ └── df96ed3ee6b5e17428e1fe1d7879a2ff.info │ │ ├── e3 │ │ │ ├── e3b911a33f2491545a27d5afa9ba19a9 │ │ │ └── e3b911a33f2491545a27d5afa9ba19a9.info │ │ ├── e4 │ │ │ ├── e480277fdcce25b40a40a1b7fa974e40 │ │ │ ├── e480277fdcce25b40a40a1b7fa974e40.info │ │ │ ├── e4ba20f553590bb418c751bb9fb4a97b │ │ │ └── e4ba20f553590bb418c751bb9fb4a97b.info │ │ ├── e5 │ │ │ ├── e503e53b3ebb72f4fa64f2683c5a83d6 │ │ │ └── e503e53b3ebb72f4fa64f2683c5a83d6.info │ │ ├── e6 │ │ │ ├── e66b92f45b835bb4480b21ebaa956a8c │ │ │ └── e66b92f45b835bb4480b21ebaa956a8c.info │ │ ├── e7 │ │ │ ├── e7ee21b2edbfe06448310fd69a3ebf78 │ │ │ └── e7ee21b2edbfe06448310fd69a3ebf78.info │ │ ├── e9 │ │ │ ├── e90de07d03bdd714ea4a26a1660d0202 │ │ │ ├── e90de07d03bdd714ea4a26a1660d0202.info │ │ │ ├── e9960a6d9bf439d43aa17fcb8c5867a1 │ │ │ └── e9960a6d9bf439d43aa17fcb8c5867a1.info │ │ ├── ed │ │ │ ├── ed3a0fc39f8ee1f42a39ddcbe45b97e7 │ │ │ ├── ed3a0fc39f8ee1f42a39ddcbe45b97e7.info │ │ │ ├── ed57550e59c67864aacbf80247a15542 │ │ │ └── ed57550e59c67864aacbf80247a15542.info │ │ ├── f0 │ │ │ ├── f059432968bdec04ca527204dc31c926 │ │ │ └── f059432968bdec04ca527204dc31c926.info │ │ ├── f1 │ │ │ ├── f1d4a696fa9aa714e8a54db3dc2a8436 │ │ │ └── f1d4a696fa9aa714e8a54db3dc2a8436.info │ │ ├── f2 │ │ │ ├── f2fef20ce1e9a82468859586b9f52d71 │ │ │ └── f2fef20ce1e9a82468859586b9f52d71.info │ │ ├── f3 │ │ │ ├── f3ac0a60bab62e94cb7244738c4bb634 │ │ │ └── f3ac0a60bab62e94cb7244738c4bb634.info │ │ ├── f5 │ │ │ ├── f5f67c52d1564df4a8936ccd202a3bd8 │ │ │ └── f5f67c52d1564df4a8936ccd202a3bd8.info │ │ ├── f7 │ │ │ ├── f76f40f76c216f34586e4f92e4c30998 │ │ │ └── f76f40f76c216f34586e4f92e4c30998.info │ │ ├── fa │ │ │ ├── fad0aa17172ae1f4aa708d05cd675bb3 │ │ │ └── fad0aa17172ae1f4aa708d05cd675bb3.info │ │ └── fe │ │ │ ├── fef3750353f211549b41eb600387ccd8 │ │ │ └── fef3750353f211549b41eb600387ccd8.info │ ├── shadercompiler-UnityShaderCompiler.exe0.log │ ├── shadercompiler-UnityShaderCompiler.exe1.log │ ├── shadercompiler-UnityShaderCompiler.exe2.log │ └── shadercompiler-UnityShaderCompiler.exe3.log ├── Mastering Unity 2D.CSharp.Editor.csproj ├── Mastering Unity 2D.CSharp.csproj ├── Mastering Unity 2D.sln ├── Mastering Unity 2D.userprefs └── 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 │ ├── UnityAdsSettings.asset │ └── UnityConnectSettings.asset └── README.md /Art Assets/Characters/Doctor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Characters/Doctor.png -------------------------------------------------------------------------------- /Art Assets/Characters/Mayor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Characters/Mayor.png -------------------------------------------------------------------------------- /Art Assets/Characters/MayorFace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Characters/MayorFace.png -------------------------------------------------------------------------------- /Art Assets/Characters/PlayerFace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Characters/PlayerFace.png -------------------------------------------------------------------------------- /Art Assets/Characters/Protagonist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Characters/Protagonist.png -------------------------------------------------------------------------------- /Art Assets/Characters/Shopkeep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Characters/Shopkeep.png -------------------------------------------------------------------------------- /Art Assets/Environment/ForestBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Environment/ForestBackground.png -------------------------------------------------------------------------------- /Art Assets/Environment/ForestForegroundElements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Environment/ForestForegroundElements.png -------------------------------------------------------------------------------- /Art Assets/Environment/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Environment/background.png -------------------------------------------------------------------------------- /Art Assets/Environment/buildingsAndRoads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Environment/buildingsAndRoads.png -------------------------------------------------------------------------------- /Art Assets/Environment/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Environment/dragon.png -------------------------------------------------------------------------------- /Art Assets/Environment/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Environment/map.jpg -------------------------------------------------------------------------------- /Art Assets/Environment/modern_campsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Environment/modern_campsite.png -------------------------------------------------------------------------------- /Art Assets/Environment/modern_oldBuilding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Environment/modern_oldBuilding.png -------------------------------------------------------------------------------- /Art Assets/Environment/skyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Environment/skyline.png -------------------------------------------------------------------------------- /Art Assets/Environment/townObjects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Environment/townObjects.png -------------------------------------------------------------------------------- /Art Assets/FX/attacks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/FX/attacks.png -------------------------------------------------------------------------------- /Art Assets/FX/smokeCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/FX/smokeCloud.png -------------------------------------------------------------------------------- /Art Assets/Props/SelectionCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Props/SelectionCircle.png -------------------------------------------------------------------------------- /Art Assets/Props/healing_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/Props/healing_items.png -------------------------------------------------------------------------------- /Art Assets/UI/BattleGUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/UI/BattleGUI.png -------------------------------------------------------------------------------- /Art Assets/UI/Inventory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/UI/Inventory.png -------------------------------------------------------------------------------- /Art Assets/UI/packt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/UI/packt.png -------------------------------------------------------------------------------- /Art Assets/UI/soundUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Art Assets/UI/soundUI.png -------------------------------------------------------------------------------- /Final Code Files/Attack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Attack.cs -------------------------------------------------------------------------------- /Final Code Files/BattleIntro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/BattleIntro.cs -------------------------------------------------------------------------------- /Final Code Files/BattleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/BattleManager.cs -------------------------------------------------------------------------------- /Final Code Files/CameraLookAt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/CameraLookAt.cs -------------------------------------------------------------------------------- /Final Code Files/CharacterMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/CharacterMovement.cs -------------------------------------------------------------------------------- /Final Code Files/Classes/Conversation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Classes/Conversation.cs -------------------------------------------------------------------------------- /Final Code Files/Classes/ConversationComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Classes/ConversationComponent.cs -------------------------------------------------------------------------------- /Final Code Files/Classes/ConversationEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Classes/ConversationEntry.cs -------------------------------------------------------------------------------- /Final Code Files/Classes/CustomAssetUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Classes/CustomAssetUtility.cs -------------------------------------------------------------------------------- /Final Code Files/Classes/Enemy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Classes/Enemy.cs -------------------------------------------------------------------------------- /Final Code Files/Classes/EnemyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Classes/EnemyClass.cs -------------------------------------------------------------------------------- /Final Code Files/Classes/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Classes/Entity.cs -------------------------------------------------------------------------------- /Final Code Files/Classes/GameState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Classes/GameState.cs -------------------------------------------------------------------------------- /Final Code Files/Classes/InventoryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Classes/InventoryItem.cs -------------------------------------------------------------------------------- /Final Code Files/Classes/Npc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Classes/Npc.cs -------------------------------------------------------------------------------- /Final Code Files/Classes/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Classes/Player.cs -------------------------------------------------------------------------------- /Final Code Files/Classes/Properties/PopUpAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Classes/Properties/PopUpAttribute.cs -------------------------------------------------------------------------------- /Final Code Files/Classes/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Classes/Singleton.cs -------------------------------------------------------------------------------- /Final Code Files/ConversationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/ConversationManager.cs -------------------------------------------------------------------------------- /Final Code Files/Editor/CameraTargetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Editor/CameraTargetEditor.cs -------------------------------------------------------------------------------- /Final Code Files/Editor/ConversationAssetCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Editor/ConversationAssetCreator.cs -------------------------------------------------------------------------------- /Final Code Files/Editor/InventoryItemAssetCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Editor/InventoryItemAssetCreator.cs -------------------------------------------------------------------------------- /Final Code Files/Editor/MyEditorWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Editor/MyEditorWindow.cs -------------------------------------------------------------------------------- /Final Code Files/Editor/MyMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Editor/MyMenu.cs -------------------------------------------------------------------------------- /Final Code Files/Editor/PropertyDrawers/PopUpCustomPropertyDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Editor/PropertyDrawers/PopUpCustomPropertyDrawer.cs -------------------------------------------------------------------------------- /Final Code Files/Editor/SaveSceneOnPlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Editor/SaveSceneOnPlay.cs -------------------------------------------------------------------------------- /Final Code Files/EnemyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/EnemyController.cs -------------------------------------------------------------------------------- /Final Code Files/FollowCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/FollowCamera.cs -------------------------------------------------------------------------------- /Final Code Files/KeepAround.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/KeepAround.cs -------------------------------------------------------------------------------- /Final Code Files/LevelLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/LevelLoader.cs -------------------------------------------------------------------------------- /Final Code Files/MapPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/MapPosition.cs -------------------------------------------------------------------------------- /Final Code Files/Messaging/Messaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Messaging/Messaging.cs -------------------------------------------------------------------------------- /Final Code Files/Messaging/MessagingClientBroadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Messaging/MessagingClientBroadcast.cs -------------------------------------------------------------------------------- /Final Code Files/Messaging/MessagingClientReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Messaging/MessagingClientReceiver.cs -------------------------------------------------------------------------------- /Final Code Files/Messaging/MessagingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Messaging/MessagingManager.cs -------------------------------------------------------------------------------- /Final Code Files/MuteUnMute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/MuteUnMute.cs -------------------------------------------------------------------------------- /Final Code Files/Navigation/NavigationMananger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Navigation/NavigationMananger.cs -------------------------------------------------------------------------------- /Final Code Files/Navigation/NavigationPrompt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Navigation/NavigationPrompt.cs -------------------------------------------------------------------------------- /Final Code Files/PlayerInventoryDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/PlayerInventoryDisplay.cs -------------------------------------------------------------------------------- /Final Code Files/PopUpMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/PopUpMenu.cs -------------------------------------------------------------------------------- /Final Code Files/RandomBattle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/RandomBattle.cs -------------------------------------------------------------------------------- /Final Code Files/Shop/ShopManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Shop/ShopManager.cs -------------------------------------------------------------------------------- /Final Code Files/Shop/ShopSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Shop/ShopSlot.cs -------------------------------------------------------------------------------- /Final Code Files/Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/Sorting.cs -------------------------------------------------------------------------------- /Final Code Files/SplashScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Final Code Files/SplashScreen.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/LICENSE -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assembly-CSharp-Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assembly-CSharp-Editor.csproj -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assembly-CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assembly-CSharp.csproj -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assembly-UnityScript.unityproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assembly-UnityScript.unityproj -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Clips.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Clips.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Clips/IntroSlideAnimation.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Clips/IntroSlideAnimation.anim -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Clips/IntroSlideAnimation.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Clips/IntroSlideAnimation.anim.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Clips/PlayerIdleDown.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Clips/PlayerIdleDown.anim -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Clips/PlayerIdleDown.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Clips/PlayerIdleDown.anim.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Clips/PlayerIdleHorizontal.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Clips/PlayerIdleHorizontal.anim -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Clips/PlayerIdleHorizontal.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Clips/PlayerIdleHorizontal.anim.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Clips/PlayerIdleUp.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Clips/PlayerIdleUp.anim -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Clips/PlayerIdleUp.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Clips/PlayerIdleUp.anim.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Clips/PlayerWalkDown.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Clips/PlayerWalkDown.anim -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Clips/PlayerWalkDown.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Clips/PlayerWalkDown.anim.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Clips/PlayerWalkHorizontal.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Clips/PlayerWalkHorizontal.anim -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Clips/PlayerWalkHorizontal.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Clips/PlayerWalkHorizontal.anim.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Clips/PlayerWalkUp.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Clips/PlayerWalkUp.anim -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Clips/PlayerWalkUp.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Clips/PlayerWalkUp.anim.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Controllers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Controllers.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Controllers/BattleStateMachine.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Controllers/BattleStateMachine.controller -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Controllers/DragonAI.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Controllers/DragonAI.controller -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Controllers/DragonAI.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Controllers/DragonAI.controller.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Controllers/PlayerWalking.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Controllers/PlayerWalking.controller -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Controllers/PlayerWalking.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Controllers/PlayerWalking.controller.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Controllers/VsAnimator.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Controllers/VsAnimator.controller -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Animation/Controllers/VsAnimator.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Animation/Controllers/VsAnimator.controller.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Audio.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Audio.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Audio/Enemy.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Audio/Enemy.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Audio/FX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Audio/FX.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Audio/FX/140382__d-w__coins-01.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Audio/FX/140382__d-w__coins-01.wav -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Audio/FX/140382__d-w__coins-01.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Audio/FX/140382__d-w__coins-01.wav.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Audio/Music.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Audio/Music.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Audio/Music/Bit Shift.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Audio/Music/Bit Shift.mp3 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Audio/Music/Bit Shift.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Audio/Music/Bit Shift.mp3.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Audio/Player.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Audio/Player.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Fonts.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Materials.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Materials/Attacks.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Materials/Attacks.mat -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Materials/Attacks.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Materials/Attacks.mat.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Materials/smoke.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Materials/smoke.mat -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Materials/smoke.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Materials/smoke.mat.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Physics Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Physics Materials.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/Characters.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/Characters.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/Characters/Dragon.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/Characters/Dragon.prefab -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/Characters/Dragon.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/Characters/Dragon.prefab.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/Characters/Player.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/Characters/Player.prefab -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/Characters/Player.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/Characters/Player.prefab.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/Environment.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/Environment.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/Environment/MapPoint.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/Environment/MapPoint.prefab -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/Environment/MapPoint.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/Environment/MapPoint.prefab.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/Environment/Zone.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/Environment/Zone.prefab -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/Environment/Zone.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/Environment/Zone.prefab.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/FX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/FX.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/FX/Chop and Smoke.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/FX/Chop and Smoke.prefab -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/FX/Chop and Smoke.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/FX/Chop and Smoke.prefab.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/FX/Kick and Smoke.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/FX/Kick and Smoke.prefab -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/FX/Kick and Smoke.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/FX/Kick and Smoke.prefab.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/FX/Smack and Smoke.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/FX/Smack and Smoke.prefab -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/FX/Smack and Smoke.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/FX/Smack and Smoke.prefab.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/FX/Wack and Smoke.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/FX/Wack and Smoke.prefab -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/FX/Wack and Smoke.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/FX/Wack and Smoke.prefab.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/Props.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/Props.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/Props/SelectionCircle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/Props/SelectionCircle.prefab -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/Props/SelectionCircle.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/Props/SelectionCircle.prefab.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/UI.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/UI/Button Menu.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/UI/Button Menu.prefab -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/UI/Button Menu.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/UI/Button Menu.prefab.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/UI/InventoryItemPrefab.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/UI/InventoryItemPrefab.prefab -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Prefabs/UI/InventoryItemPrefab.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Prefabs/UI/InventoryItemPrefab.prefab.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Resources.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Resources/Conversations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Resources/Conversations.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Resources/Conversations/MayorWarning.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Resources/Conversations/MayorWarning.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Resources/Conversations/MayorWarning.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Resources/Conversations/MayorWarning.asset.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Resources/Inventory Items.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Resources/Inventory Items.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Resources/Inventory Items/Bandaid.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Resources/Inventory Items/Bandaid.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Resources/Inventory Items/Bandaid.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Resources/Inventory Items/Bandaid.asset.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Resources/Inventory Items/BlueCapsule.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Resources/Inventory Items/BlueCapsule.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Resources/Inventory Items/BlueCapsule.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Resources/Inventory Items/BlueCapsule.asset.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Resources/Inventory Items/MedPack.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Resources/Inventory Items/MedPack.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Resources/Inventory Items/MedPack.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Resources/Inventory Items/MedPack.asset.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Resources/Inventory Items/RedCapsule.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Resources/Inventory Items/RedCapsule.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Resources/Inventory Items/RedCapsule.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Resources/Inventory Items/RedCapsule.asset.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scenes.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scenes/BattleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scenes/BattleScene.unity -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scenes/BattleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scenes/BattleScene.unity.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scenes/EditorDemos.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scenes/EditorDemos.unity -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scenes/EditorDemos.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scenes/EditorDemos.unity.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scenes/GameOver.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scenes/GameOver.unity -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scenes/GameOver.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scenes/GameOver.unity.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scenes/Overworld.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scenes/Overworld.unity -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scenes/Overworld.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scenes/Overworld.unity.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scenes/Shop.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scenes/Shop.unity -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scenes/Shop.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scenes/Shop.unity.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scenes/SplashScreen.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scenes/SplashScreen.unity -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scenes/SplashScreen.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scenes/SplashScreen.unity.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scenes/StartScreen.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scenes/StartScreen.unity -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scenes/StartScreen.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scenes/StartScreen.unity.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scenes/Town.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scenes/Town.unity -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scenes/Town.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scenes/Town.unity.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Attack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Attack.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Attack.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Attack.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/BattleIntro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/BattleIntro.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/BattleIntro.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/BattleIntro.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/BattleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/BattleManager.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/BattleManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/BattleManager.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/CameraLookAt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/CameraLookAt.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/CameraLookAt.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/CameraLookAt.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/CharacterMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/CharacterMovement.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/CharacterMovement.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/CharacterMovement.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/Conversation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/Conversation.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/Conversation.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/Conversation.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/ConversationComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/ConversationComponent.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/ConversationComponent.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/ConversationComponent.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/ConversationEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/ConversationEntry.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/ConversationEntry.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/ConversationEntry.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/Enemy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/Enemy.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/Enemy.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/Enemy.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/EnemyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/EnemyClass.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/EnemyClass.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/EnemyClass.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/Entity.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/Entity.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/Entity.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/GameState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/GameState.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/GameState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/GameState.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/InventoryItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/InventoryItem.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/InventoryItem.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/InventoryItem.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/Npc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/Npc.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/Npc.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/Npc.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/Player.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/Player.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/Player.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/Properties.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/Properties.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/Properties/PopUpAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/Properties/PopUpAttribute.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/Properties/PopUpAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/Properties/PopUpAttribute.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/Singleton.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Classes/Singleton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Classes/Singleton.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/ConversationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/ConversationManager.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/ConversationManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/ConversationManager.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Editor.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Editor/CameraTargetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Editor/CameraTargetEditor.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Editor/CameraTargetEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Editor/CameraTargetEditor.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Editor/ConversationAssetCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Editor/ConversationAssetCreator.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Editor/ConversationAssetCreator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Editor/ConversationAssetCreator.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Editor/CustomAssetUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Editor/CustomAssetUtility.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Editor/CustomAssetUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Editor/CustomAssetUtility.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Editor/InventoryItemAssetCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Editor/InventoryItemAssetCreator.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Editor/InventoryItemAssetCreator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Editor/InventoryItemAssetCreator.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Editor/MyEditorWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Editor/MyEditorWindow.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Editor/MyEditorWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Editor/MyEditorWindow.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Editor/MyMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Editor/MyMenu.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Editor/MyMenu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Editor/MyMenu.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Editor/PropertyDrawers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Editor/PropertyDrawers.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Editor/SaveSceneOnPlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Editor/SaveSceneOnPlay.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Editor/SaveSceneOnPlay.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Editor/SaveSceneOnPlay.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/EnemyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/EnemyController.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/EnemyController.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/EnemyController.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/FollowCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/FollowCamera.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/FollowCamera.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/FollowCamera.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/KeepAround.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/KeepAround.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/KeepAround.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/KeepAround.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/LevelLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/LevelLoader.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/LevelLoader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/LevelLoader.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/MapPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/MapPosition.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/MapPosition.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/MapPosition.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Messaging.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Messaging.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Messaging/Messaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Messaging/Messaging.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Messaging/Messaging.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Messaging/Messaging.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Messaging/MessagingClientBroadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Messaging/MessagingClientBroadcast.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Messaging/MessagingClientBroadcast.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Messaging/MessagingClientBroadcast.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Messaging/MessagingClientReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Messaging/MessagingClientReceiver.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Messaging/MessagingClientReceiver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Messaging/MessagingClientReceiver.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Messaging/MessagingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Messaging/MessagingManager.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Messaging/MessagingManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Messaging/MessagingManager.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/MuteUnMute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/MuteUnMute.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/MuteUnMute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/MuteUnMute.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Navigation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Navigation.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Navigation/NavigationMananger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Navigation/NavigationMananger.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Navigation/NavigationMananger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Navigation/NavigationMananger.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Navigation/NavigationPrompt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Navigation/NavigationPrompt.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Navigation/NavigationPrompt.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Navigation/NavigationPrompt.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/PlayerInventoryDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/PlayerInventoryDisplay.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/PlayerInventoryDisplay.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/PlayerInventoryDisplay.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/PopUpMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/PopUpMenu.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/PopUpMenu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/PopUpMenu.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/RandomBattle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/RandomBattle.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/RandomBattle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/RandomBattle.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Shop.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Shop.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Shop/ShopManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Shop/ShopManager.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Shop/ShopManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Shop/ShopManager.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Shop/ShopSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Shop/ShopSlot.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Shop/ShopSlot.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Shop/ShopSlot.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Sorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Sorting.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/Sorting.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/Sorting.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/SplashScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/SplashScreen.cs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Scripts/SplashScreen.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Scripts/SplashScreen.cs.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Characters.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Characters.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Characters/Doctor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Characters/Doctor.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Characters/Doctor.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Characters/Doctor.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Characters/Mayor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Characters/Mayor.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Characters/Mayor.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Characters/Mayor.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Characters/MayorFace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Characters/MayorFace.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Characters/MayorFace.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Characters/MayorFace.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Characters/PlayerFace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Characters/PlayerFace.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Characters/PlayerFace.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Characters/PlayerFace.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Characters/Protagonist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Characters/Protagonist.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Characters/Protagonist.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Characters/Protagonist.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Characters/Shopkeep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Characters/Shopkeep.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Characters/Shopkeep.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Characters/Shopkeep.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/ForestBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/ForestBackground.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/ForestBackground.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/ForestBackground.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/ForestForegroundElements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/ForestForegroundElements.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/background.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/background.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/background.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/buildingsAndRoads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/buildingsAndRoads.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/buildingsAndRoads.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/buildingsAndRoads.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/dragon.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/dragon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/dragon.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/map.jpg -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/map.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/map.jpg.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/modern_campsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/modern_campsite.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/modern_campsite.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/modern_campsite.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/modern_oldBuilding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/modern_oldBuilding.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/modern_oldBuilding.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/modern_oldBuilding.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/skyline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/skyline.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/skyline.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/skyline.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/townObjects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/townObjects.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Environment/townObjects.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Environment/townObjects.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/FX.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/FX.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/FX/attacks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/FX/attacks.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/FX/attacks.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/FX/attacks.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/FX/smokeCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/FX/smokeCloud.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/FX/smokeCloud.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/FX/smokeCloud.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Props.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Props.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Props/SelectionCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Props/SelectionCircle.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Props/SelectionCircle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Props/SelectionCircle.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Props/healing_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Props/healing_items.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/Props/healing_items.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/Props/healing_items.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/UI.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/UI/BattleGUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/UI/BattleGUI.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/UI/BattleGUI.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/UI/BattleGUI.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/UI/Inventory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/UI/Inventory.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/UI/Inventory.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/UI/Inventory.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/UI/packt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/UI/packt.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/UI/packt.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/UI/packt.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/UI/soundUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/UI/soundUI.png -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/Sprites/UI/soundUI.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/Sprites/UI/soundUI.png.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/newPositionManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/newPositionManager.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Assets/newPositionManager.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Assets/newPositionManager.asset.meta -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/AnnotationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/AnnotationManager -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/AssetImportState: -------------------------------------------------------------------------------- 1 | 5;0;6;-1 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/AssetServerCacheV3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/AssetServerCacheV3 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/AssetVersioning.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/AssetVersioning.db -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/BuildPlayer.prefs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/BuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/BuildSettings.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/CurrentLayout.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/CurrentLayout.dwlt -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/EditorUserBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/EditorUserBuildSettings.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/EditorUserSettings.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/InspectorExpandedItems.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/InspectorExpandedItems.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/LastSceneManagerSetup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/LastSceneManagerSetup.txt -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/LibraryFormatVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/LibraryFormatVersion.txt -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/MonoManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/MonoManager.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ProjectSettings.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll.mdb -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ScriptAssemblies/Assembly-CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ScriptAssemblies/Assembly-CSharp.dll -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ScriptAssemblies/BuiltinAssemblies.stamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ScriptAssemblies/BuiltinAssemblies.stamp -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ScriptMapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ScriptMapper -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache.db -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/005b1ff643ccc0f502bfdef9b6df85d2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/005b1ff643ccc0f502bfdef9b6df85d2.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0164cb851a747e1a36b66f58aee02d74.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0164cb851a747e1a36b66f58aee02d74.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/018bbb76a9e88b7d9172aa21d57826c1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/018bbb76a9e88b7d9172aa21d57826c1.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/01d2a95abb82dbfdc17c06897e1f4720.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/01d2a95abb82dbfdc17c06897e1f4720.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/021b1d7f306303f0e7b3bd6e3eddbbf5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/021b1d7f306303f0e7b3bd6e3eddbbf5.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/023605c1129e91a84feafb375851d6d8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/023605c1129e91a84feafb375851d6d8.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/02db033272eaeb7a192c665e28e24594.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/02db033272eaeb7a192c665e28e24594.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/03525a05ef566dc0be4f3468cb8581c5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/03525a05ef566dc0be4f3468cb8581c5.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/04401b9a4342c212db4b03d907ac21de.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/04401b9a4342c212db4b03d907ac21de.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/04d56c9ebd53d7672c9ff5290865f45d.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/04d56c9ebd53d7672c9ff5290865f45d.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0593da3cd136723e04ed14e3b52af5a9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0593da3cd136723e04ed14e3b52af5a9.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/05b11717fe98fead3fc9530341704268.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/05b11717fe98fead3fc9530341704268.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/05c8ab37e75b21ba43fcd12a8cd8851c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/05c8ab37e75b21ba43fcd12a8cd8851c.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/05ce80e819508d05a1e026c8c5976834.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/05ce80e819508d05a1e026c8c5976834.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0601421be0ef52052c4a548c869d9a80.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0601421be0ef52052c4a548c869d9a80.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/06fc5bfc42c8a83be594f28ffbef1db7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/06fc5bfc42c8a83be594f28ffbef1db7.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0756641ea868a33a115f7389d89c2561.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0756641ea868a33a115f7389d89c2561.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/078f2be17cc85aca8a56f06846816437.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/078f2be17cc85aca8a56f06846816437.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/07b69fb494bc7681bdcccb1ff7f728be.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/07b69fb494bc7681bdcccb1ff7f728be.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0865207f5ca0b4f758e5e678b07e3b1a.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0865207f5ca0b4f758e5e678b07e3b1a.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0892238069f20bc4e3704ab0383a9d30.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0892238069f20bc4e3704ab0383a9d30.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/09a49448a4bfe5da8a267b72144a8719.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/09a49448a4bfe5da8a267b72144a8719.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/09cbd9b9a2210059b70f74a910e99086.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/09cbd9b9a2210059b70f74a910e99086.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/09f4eb50ec844c77e04db4be3fd95744.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/09f4eb50ec844c77e04db4be3fd95744.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0a030748de876711c15b7bd98889fcf4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0a030748de876711c15b7bd98889fcf4.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0a12e7fdff5c2a410c5a68a9016d9415.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0a12e7fdff5c2a410c5a68a9016d9415.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0a1f888e4e361acb99ec6ddbe76cbc3b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0a1f888e4e361acb99ec6ddbe76cbc3b.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0a7f9799588a4a3e8099739a79fc1509.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0a7f9799588a4a3e8099739a79fc1509.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0ac15fdf3dc9e1cb8ea0e7b77c409ec9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0ac15fdf3dc9e1cb8ea0e7b77c409ec9.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0c0b2b285e769f633a311fed382e2d63.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0c0b2b285e769f633a311fed382e2d63.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0c43f54d02d42448a349f6a337b6f986.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0c43f54d02d42448a349f6a337b6f986.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0c9efb4d3180a51d2f55338f033aebf0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0c9efb4d3180a51d2f55338f033aebf0.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0cae9d530c5a9e3a0c241e94efe897e1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0cae9d530c5a9e3a0c241e94efe897e1.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0e3b2a3ab42572ce75820393e85d20f4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0e3b2a3ab42572ce75820393e85d20f4.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0ed98aa431a97fb30cc4099ffbfb1ebf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0ed98aa431a97fb30cc4099ffbfb1ebf.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0edcd4a103c1d7ecb4b17f41d91345c5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0edcd4a103c1d7ecb4b17f41d91345c5.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/0/0f3eb378414817f78194afaed4fec2c0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/0/0f3eb378414817f78194afaed4fec2c0.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/1/10bdb97372595006a872dede5c6ef2a0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/1/10bdb97372595006a872dede5c6ef2a0.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/1/125cbb7f99ee43f99027f79c768a0feb.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/1/125cbb7f99ee43f99027f79c768a0feb.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/ShaderCache/1/12934f232f001b720ff466580944dea2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/ShaderCache/1/12934f232f001b720ff466580944dea2.bin -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/Mono.Cecil.dll -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.Advertisements.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.Advertisements.dll -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.Advertisements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.Advertisements.xml -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.Graphs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.Graphs.dll -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.Metro.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.Metro.Extensions.dll -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.Networking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.Networking.dll -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.Networking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.Networking.xml -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.Tizen.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.Tizen.Extensions.dll -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.TreeEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.TreeEditor.dll -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.TreeEditor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.TreeEditor.xml -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.UI.dll -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.UI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.UI.xml -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.WebGL.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.WebGL.Extensions.dll -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.dll -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.iOS.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.iOS.Extensions.dll -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEditor.xml -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEngine.Networking.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEngine.Networking.dll -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEngine.Networking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEngine.Networking.xml -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEngine.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEngine.UI.dll -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEngine.UI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEngine.UI.xml -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEngine.dll -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/UnityEngine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/UnityEngine.xml -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/nunit.framework.dll -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/nunit.framework.xml -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/UnityAssemblies/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/UnityAssemblies/version.txt -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/assetDatabase3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/assetDatabase3 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/expandedItems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/expandedItems -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/00000000000000001000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/00000000000000001000000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/00000000000000002000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/00000000000000002000000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/00000000000000003000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/00000000000000003000000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/00000000000000004000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/00000000000000004000000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/00000000000000004100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/00000000000000004100000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/00000000000000005000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/00000000000000005000000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/00000000000000005100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/00000000000000005100000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/00000000000000006000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/00000000000000006000000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/00000000000000006100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/00000000000000006100000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/00000000000000007000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/00000000000000007000000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/00000000000000007100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/00000000000000007100000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/00000000000000008000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/00000000000000008000000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/00000000000000008100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/00000000000000008100000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/00000000000000009000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/00000000000000009000000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/0000000000000000a000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/0000000000000000a000000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/0000000000000000a100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/0000000000000000a100000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/0000000000000000b000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/0000000000000000b000000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/00/0000000000000000c000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/00/0000000000000000c000000000000000 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/02/023f63cdf08ebd2458f3bd739500f297: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/02/023f63cdf08ebd2458f3bd739500f297 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/06/06db2d2e18d0fa04887001e86f935648: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/06/06db2d2e18d0fa04887001e86f935648 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/07/07147bd5c33c64e4aa5bffa49e7f7ff4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/07/07147bd5c33c64e4aa5bffa49e7f7ff4 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/07/07a1a9d0f0e7a3547ad74ae400f7c417: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/07/07a1a9d0f0e7a3547ad74ae400f7c417 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/0a/0a15581816f08c044845aaa7c9635c9d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/0a/0a15581816f08c044845aaa7c9635c9d -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/0a/0a760b816f077114893912712122cbd5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/0a/0a760b816f077114893912712122cbd5 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/0a/0ac0555fe7eca7c4db4bc172218ff5dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/0a/0ac0555fe7eca7c4db4bc172218ff5dd -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/0b/0b0bb56ccf7bf50479d1b04ec343dfe9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/0b/0b0bb56ccf7bf50479d1b04ec343dfe9 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/0c/0c45b6b556a38f54a99f19ef0dfac8f5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/0c/0c45b6b556a38f54a99f19ef0dfac8f5 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/0e/0eef5e52921e1c848a34a55456d33971: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/0e/0eef5e52921e1c848a34a55456d33971 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/11/112d8d572cd99f44f8b5909ed13662e1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/11/112d8d572cd99f44f8b5909ed13662e1 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/16/16776713932be4046a13123cbe2fc362: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/16/16776713932be4046a13123cbe2fc362 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/16/1697b37a79347b34da9dde71eefd6d7f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/16/1697b37a79347b34da9dde71eefd6d7f -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/18/18a772843545641448db06de29e065e4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/18/18a772843545641448db06de29e065e4 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/1a/1a50f6da0ce602f4483f3372a65df0c8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/1a/1a50f6da0ce602f4483f3372a65df0c8 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/1b/1bb701cb8945b194bb98077b0b3f8d6b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/1b/1bb701cb8945b194bb98077b0b3f8d6b -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/1c/1c5ddfad14dc79a428838fc15b24be72: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/1c/1c5ddfad14dc79a428838fc15b24be72 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/1c/1c5e731f57fe08741bde345ab6f419a9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/1c/1c5e731f57fe08741bde345ab6f419a9 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/1c/1cfbd925fa6070f42bdb724e69467f72: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/1c/1cfbd925fa6070f42bdb724e69467f72 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/22/22aad0974c72d964886d5809ffb1eec2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/22/22aad0974c72d964886d5809ffb1eec2 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/22/22d8dd03c8210394696170e43e33c4bf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/22/22d8dd03c8210394696170e43e33c4bf -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/23/23f1e3893598c244884a282aea57b57c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/23/23f1e3893598c244884a282aea57b57c -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/24/2493ad87fe44fb34faf756ce387d21db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/24/2493ad87fe44fb34faf756ce387d21db -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/28/28277a446accf7a41b8e786dfef41736: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/28/28277a446accf7a41b8e786dfef41736 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/28/289913d76c35d264c823b5be17391279: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/28/289913d76c35d264c823b5be17391279 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/2b/2b4f2270ef08ada4fbc2a40fcb6ddbd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/2b/2b4f2270ef08ada4fbc2a40fcb6ddbd1 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/2b/2b87ecaa91b71b74aac8a7712fb3b24e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/2b/2b87ecaa91b71b74aac8a7712fb3b24e -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/2e/2e5c1a5eb7c5683409c29c43435c42be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/2e/2e5c1a5eb7c5683409c29c43435c42be -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/34/3407f6be02c6779428eccc88cbe5b50b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/34/3407f6be02c6779428eccc88cbe5b50b -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/37/37977e72d61d92044a40442b6dda7433: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/37/37977e72d61d92044a40442b6dda7433 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/38/38ec01ad43766614da12dde0201aec0b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/38/38ec01ad43766614da12dde0201aec0b -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/39/3962afa01f5b1e3418eb25d80f6ebc3f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/39/3962afa01f5b1e3418eb25d80f6ebc3f -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/3b/3b222c1193b5ca5429817d96c177e8c8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/3b/3b222c1193b5ca5429817d96c177e8c8 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/3b/3b889fa80968c9b4cb4c49b62aeaa8a0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/3b/3b889fa80968c9b4cb4c49b62aeaa8a0 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/3c/3c0ad459c1534645b5d603b7cc258f97: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/3c/3c0ad459c1534645b5d603b7cc258f97 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/3e/3e0ed9b4ff283104d8f8b909938e394a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/3e/3e0ed9b4ff283104d8f8b909938e394a -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/3f/3f3ce42e2dfe64147b04fe41c8295c81: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/3f/3f3ce42e2dfe64147b04fe41c8295c81 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/3f/3fa9cb5a82be8c748a811d85ef66a2dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/3f/3fa9cb5a82be8c748a811d85ef66a2dd -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/41/41ad6c52eb43a7941bf0d9a6966c9b7a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/41/41ad6c52eb43a7941bf0d9a6966c9b7a -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/43/4399b5d97d7c301429606302b69b78b4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/43/4399b5d97d7c301429606302b69b78b4 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/43/43deccaa7cc843447a74a152e0a97304: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/43/43deccaa7cc843447a74a152e0a97304 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/44/4410d12cb096f7144b847d01de9abb33: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/44/4410d12cb096f7144b847d01de9abb33 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/44/449321fc5f1ed014892a9e19125310e9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/44/449321fc5f1ed014892a9e19125310e9 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/4a/4a918a1030d4b624e8c621214b90fbb5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/4a/4a918a1030d4b624e8c621214b90fbb5 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/4b/4b19f98484ed83547b6507ca7aa668f5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/4b/4b19f98484ed83547b6507ca7aa668f5 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/4b/4b43234cfaeb3a54289c601e53c09e0c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/4b/4b43234cfaeb3a54289c601e53c09e0c -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/4f/4f0e77799f2b1f54fb352b4c6235b812: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/4f/4f0e77799f2b1f54fb352b4c6235b812 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/52/5213b382a880f224d82e5fdb7d84b6ed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/52/5213b382a880f224d82e5fdb7d84b6ed -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/52/5232ac57491b66a4f892f505f47ea1de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/52/5232ac57491b66a4f892f505f47ea1de -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/55/5586692cf6a5e2c4daf5f08cc703dee0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/55/5586692cf6a5e2c4daf5f08cc703dee0 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/55/55ea2d676ab6db740a84122416ac6c34: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/55/55ea2d676ab6db740a84122416ac6c34 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/56/5607cec5b5f89844c9fba3accb983bc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/56/5607cec5b5f89844c9fba3accb983bc6 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/56/5616c9cf29c5d9d4eb489f314493cebd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/56/5616c9cf29c5d9d4eb489f314493cebd -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/58/58b53e9eb44ac3d428a2b4ead3570014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/58/58b53e9eb44ac3d428a2b4ead3570014 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/59/59e8d123c178eee4287dc21afc9ef4fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/59/59e8d123c178eee4287dc21afc9ef4fc -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/5a/5a4e62ff683b4f24ca566098d78a976d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/5a/5a4e62ff683b4f24ca566098d78a976d -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/5b/5bbfda80ae2fb0846be5cb8564a4bb57: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/5b/5bbfda80ae2fb0846be5cb8564a4bb57 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/5f/5f32cd94baa94578a686d4b9d6b660f7 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/61/61d4e9a7285dc8647a84013aa5bbe694: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/61/61d4e9a7285dc8647a84013aa5bbe694 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/62/62b14063af29f744cad55a906b48dfd8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/62/62b14063af29f744cad55a906b48dfd8 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/67/67f0790e15afbe44f92c771c6586667d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/67/67f0790e15afbe44f92c771c6586667d -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/6b/6b98a9df94d444247bd74b0d52613f0a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/6b/6b98a9df94d444247bd74b0d52613f0a -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/6b/6bb3cbef6823b2240a2ca8ebdc0632c4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/6b/6bb3cbef6823b2240a2ca8ebdc0632c4 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/6c/6cd9cf6966c68134982bb72304fcace5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/6c/6cd9cf6966c68134982bb72304fcace5 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/6d/6d90f573e2bd3f64eb290bf708d4807f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/6d/6d90f573e2bd3f64eb290bf708d4807f -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/6e/6e869474838ea8b469df87b00c7849cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/6e/6e869474838ea8b469df87b00c7849cc -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/71/71af80584142f12498998c1e64b130d1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/71/71af80584142f12498998c1e64b130d1 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/71/71db585d432517643892c55eafa37433: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/71/71db585d432517643892c55eafa37433 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/72/7211cf0b15142b94d976c2f895813560: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/72/7211cf0b15142b94d976c2f895813560 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/72/72bbee9be396d024c9165f508ce44b3a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/72/72bbee9be396d024c9165f508ce44b3a -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/73/739bbd9f364b4268874f9fd86ab3beef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/73/739bbd9f364b4268874f9fd86ab3beef -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/78/78b81d670f87ce24b9d2fbc59a23610e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/78/78b81d670f87ce24b9d2fbc59a23610e -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/7a/7a00af140ec12b04d8054ed5fc76acad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/7a/7a00af140ec12b04d8054ed5fc76acad -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/7c/7c444d1fb0811574fbd4ce3f04c055c6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/7c/7c444d1fb0811574fbd4ce3f04c055c6 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/7c/7cbab2be89b54486bbd23a6fe637d30e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/7c/7cbab2be89b54486bbd23a6fe637d30e -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/7d/7d03cc07b89519e45bd8517c28d9a225: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/7d/7d03cc07b89519e45bd8517c28d9a225 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/83/83aa51ce31580a3419edd15682cd3d36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/83/83aa51ce31580a3419edd15682cd3d36 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/83/83ada186b661d6047b6ac2a9ca219d17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/83/83ada186b661d6047b6ac2a9ca219d17 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/85/852e56802eb941638acbb491814497b0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/85/852e56802eb941638acbb491814497b0 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/85/85b4f18386e370d4da4b7cf45c834e7e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/85/85b4f18386e370d4da4b7cf45c834e7e -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/86/86e0bb16370c6964ab403a6ec9e92dbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/86/86e0bb16370c6964ab403a6ec9e92dbd -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/86/86f0770bd757058498ff15a6eced8bb7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/86/86f0770bd757058498ff15a6eced8bb7 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/87/870353891bb340e2b2a9c8707e7419ba -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/88/88e0e04861ac072438e1060bff47b659: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/88/88e0e04861ac072438e1060bff47b659 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/8c/8cb943c3b937c524e9becb8ed6e794d0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/8c/8cb943c3b937c524e9becb8ed6e794d0 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/8d/8dac41c31f9939140a693f7c203c0637: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/8d/8dac41c31f9939140a693f7c203c0637 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/8e/8e0cd8ed44d4412cbe0642067abc9e44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/8e/8e0cd8ed44d4412cbe0642067abc9e44 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/8e/8e705ce36298fcd4f83a198dccdbd525: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/8e/8e705ce36298fcd4f83a198dccdbd525 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/8f/8f3db20d7741628418aa8bb026d48864: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/8f/8f3db20d7741628418aa8bb026d48864 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/90/90625c1641134674fbcf8597c774c19f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/90/90625c1641134674fbcf8597c774c19f -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/92/9218cf97bf04a2845865b8ec6e36a4da: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/92/9218cf97bf04a2845865b8ec6e36a4da -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/92/92b49e9c5c03ba04c86fcaf2997d62ef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/92/92b49e9c5c03ba04c86fcaf2997d62ef -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/93/93d26bb7690bc4542b7b856f65de33fe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/93/93d26bb7690bc4542b7b856f65de33fe -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/93/93e95ca71969e4f4faec783cf301e86b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/93/93e95ca71969e4f4faec783cf301e86b -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/97/97decbdab0634cdd991f8d23ddf0dead: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/97/97decbdab0634cdd991f8d23ddf0dead -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/98/9882b307d2d8a8849a43cb2f50b7c252: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/98/9882b307d2d8a8849a43cb2f50b7c252 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/9c/9c1d1da2d39817b459ef0e80c44bbb25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/9c/9c1d1da2d39817b459ef0e80c44bbb25 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/a2/a232c5cabe62a9940a31ec5549ba2330: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/a2/a232c5cabe62a9940a31ec5549ba2330 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/a3/a37a1c2c39abb3a41904890fd7e017a9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/a3/a37a1c2c39abb3a41904890fd7e017a9 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/a4/a475d62ee8cdd4749a169e3fe5f4885e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/a4/a475d62ee8cdd4749a169e3fe5f4885e -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/a8/a891f86a83d1fe34a9739120aa9326c2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/a8/a891f86a83d1fe34a9739120aa9326c2 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/aa/aa1619966c26bcf4fb1454c0486bcaef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/aa/aa1619966c26bcf4fb1454c0486bcaef -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/ab/ab75e6089418d874ea8532cec7d7a217: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/ab/ab75e6089418d874ea8532cec7d7a217 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/ab/ab9da8694d28e6049bc9e38cd9c90360: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/ab/ab9da8694d28e6049bc9e38cd9c90360 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/ac/acbc41fd7c65e0b4c81858602e16182d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/ac/acbc41fd7c65e0b4c81858602e16182d -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/ad/adebbd281f1a4ef3a30be7f21937e02f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/ad/adebbd281f1a4ef3a30be7f21937e02f -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/b1/b1b9a75614eac734e81faabadb746d3f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/b1/b1b9a75614eac734e81faabadb746d3f -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/b4/b477c78dc505ef143bb4f979a2e41061: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/b4/b477c78dc505ef143bb4f979a2e41061 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/b4/b4a21dc65f8037440837803c2d66eda9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/b4/b4a21dc65f8037440837803c2d66eda9 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/b4/b4f31ec25143da44b9ef5bbe0ab66157: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/b4/b4f31ec25143da44b9ef5bbe0ab66157 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/b5/b556832ce068d284d82605d054542adc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/b5/b556832ce068d284d82605d054542adc -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/b7/b709489387ed3554997b4ec75cbf6050: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/b7/b709489387ed3554997b4ec75cbf6050 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/b7/b70d2650d7dcdfc44890b5743430b261: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/b7/b70d2650d7dcdfc44890b5743430b261 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/b7/b79de820f9cd3e04385f1e16c172a3c1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/b7/b79de820f9cd3e04385f1e16c172a3c1 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/ba/ba61dc5f57aa3764782b158253f34397: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/ba/ba61dc5f57aa3764782b158253f34397 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/bd/bd0cad610c3234d43af3262f97ed396a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/bd/bd0cad610c3234d43af3262f97ed396a -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/be/beb252d7d55a04144a83ae9668735af7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/be/beb252d7d55a04144a83ae9668735af7 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/bf/bf40aec8a9beea8408623826e16059e1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/bf/bf40aec8a9beea8408623826e16059e1 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/bf/bffddfc97ed35f543868ce7ad2d17941: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/bf/bffddfc97ed35f543868ce7ad2d17941 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/c3/c38648a9f48c79746955ee269336a56a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/c3/c38648a9f48c79746955ee269336a56a -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/c4/c4f204924ddb1ed40a29bf5026b56de4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/c4/c4f204924ddb1ed40a29bf5026b56de4 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/c7/c7f729a3d9d51af4ea0d85f8a53d8ec9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/c7/c7f729a3d9d51af4ea0d85f8a53d8ec9 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/c8/c8b4c172c13dd0040bb12b56dddf4e6f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/c8/c8b4c172c13dd0040bb12b56dddf4e6f -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/ca/ca056705e94bcea42aa021a5d1bd372c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/ca/ca056705e94bcea42aa021a5d1bd372c -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/ca/cacdbbeb84376d646b53aaad8dae29e6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/ca/cacdbbeb84376d646b53aaad8dae29e6 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/cb/cbc1b59d0d621b24782d5105864e172a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/cb/cbc1b59d0d621b24782d5105864e172a -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/cc/cc7d6c8c5efd01e4fa3ddb997493ac64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/cc/cc7d6c8c5efd01e4fa3ddb997493ac64 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/cd/cdd9f036750b6954e84becd850e03a05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/cd/cdd9f036750b6954e84becd850e03a05 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/ce/cee1b6e3e782a5f4bbca2077d547c3bd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/ce/cee1b6e3e782a5f4bbca2077d547c3bd -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/cf/cf89b6a3ec2d36b41a1317b03c96cda3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/cf/cf89b6a3ec2d36b41a1317b03c96cda3 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/d2/d2916d3d86fe95b4e94d5154f4c142a9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/d2/d2916d3d86fe95b4e94d5154f4c142a9 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/d3/d33ebf83d17d9824c9b696d5e5b2d281: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/d3/d33ebf83d17d9824c9b696d5e5b2d281 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/d6/d64062a62b06c554ebf0907777d9fa99: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/d6/d64062a62b06c554ebf0907777d9fa99 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/d8/d84cf7dd93c95b8429dd9b3caf48ef07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/d8/d84cf7dd93c95b8429dd9b3caf48ef07 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/d8/d8b20de0daf5a9543af6a99eccc71c4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/d8/d8b20de0daf5a9543af6a99eccc71c4a -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/de/deea031325a2b174dbd292da7cc653a7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/de/deea031325a2b174dbd292da7cc653a7 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/df/df96ed3ee6b5e17428e1fe1d7879a2ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/df/df96ed3ee6b5e17428e1fe1d7879a2ff -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/e3/e3b911a33f2491545a27d5afa9ba19a9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/e3/e3b911a33f2491545a27d5afa9ba19a9 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/e4/e480277fdcce25b40a40a1b7fa974e40: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/e4/e480277fdcce25b40a40a1b7fa974e40 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/e4/e4ba20f553590bb418c751bb9fb4a97b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/e4/e4ba20f553590bb418c751bb9fb4a97b -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/e5/e503e53b3ebb72f4fa64f2683c5a83d6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/e5/e503e53b3ebb72f4fa64f2683c5a83d6 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/e6/e66b92f45b835bb4480b21ebaa956a8c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/e6/e66b92f45b835bb4480b21ebaa956a8c -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/e7/e7ee21b2edbfe06448310fd69a3ebf78: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/e7/e7ee21b2edbfe06448310fd69a3ebf78 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/e9/e90de07d03bdd714ea4a26a1660d0202: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/e9/e90de07d03bdd714ea4a26a1660d0202 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/e9/e9960a6d9bf439d43aa17fcb8c5867a1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/e9/e9960a6d9bf439d43aa17fcb8c5867a1 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/ed/ed3a0fc39f8ee1f42a39ddcbe45b97e7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/ed/ed3a0fc39f8ee1f42a39ddcbe45b97e7 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/ed/ed57550e59c67864aacbf80247a15542: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/ed/ed57550e59c67864aacbf80247a15542 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/f0/f059432968bdec04ca527204dc31c926: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/f0/f059432968bdec04ca527204dc31c926 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/f1/f1d4a696fa9aa714e8a54db3dc2a8436: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/f1/f1d4a696fa9aa714e8a54db3dc2a8436 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/f2/f2fef20ce1e9a82468859586b9f52d71: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/f2/f2fef20ce1e9a82468859586b9f52d71 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/f3/f3ac0a60bab62e94cb7244738c4bb634: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/f3/f3ac0a60bab62e94cb7244738c4bb634 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/f7/f76f40f76c216f34586e4f92e4c30998: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/f7/f76f40f76c216f34586e4f92e4c30998 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/fa/fad0aa17172ae1f4aa708d05cd675bb3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/fa/fad0aa17172ae1f4aa708d05cd675bb3 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/metadata/fe/fef3750353f211549b41eb600387ccd8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Library/metadata/fe/fef3750353f211549b41eb600387ccd8 -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/shadercompiler-UnityShaderCompiler.exe0.log: -------------------------------------------------------------------------------- 1 | Base path: C:/Program Files/Unity5.3/Editor/Data 2 | Cmd: getPlatforms 3 | -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/shadercompiler-UnityShaderCompiler.exe1.log: -------------------------------------------------------------------------------- 1 | Base path: C:/Program Files/Unity5.3/Editor/Data 2 | Cmd: getPlatforms 3 | -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/shadercompiler-UnityShaderCompiler.exe2.log: -------------------------------------------------------------------------------- 1 | Base path: C:/Program Files/Unity5.3/Editor/Data 2 | Cmd: getPlatforms 3 | -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Library/shadercompiler-UnityShaderCompiler.exe3.log: -------------------------------------------------------------------------------- 1 | Base path: C:/Program Files/Unity5.3/Editor/Data 2 | Cmd: getPlatforms 3 | -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Mastering Unity 2D.CSharp.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Mastering Unity 2D.CSharp.Editor.csproj -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Mastering Unity 2D.CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Mastering Unity 2D.CSharp.csproj -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Mastering Unity 2D.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Mastering Unity 2D.sln -------------------------------------------------------------------------------- /Mastering Unity 2D Project/Mastering Unity 2D.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/Mastering Unity 2D.userprefs -------------------------------------------------------------------------------- /Mastering Unity 2D Project/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Mastering Unity 2D Project/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /Mastering Unity 2D Project/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/Mastering Unity 2D Project/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Mastering-Unity-2D-Game-Development-Second-Edition/HEAD/README.md --------------------------------------------------------------------------------