├── .gitignore ├── Ch_02_Starter_HeroBorn ├── .DS_Store ├── Assets │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── LearningCurve.cs │ │ └── LearningCurve.cs.meta ├── Logs │ └── Packages-Update.log ├── Packages │ └── manifest.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ └── XRSettings.asset ├── Ch_03_Starter_HeroBorn ├── Assets │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── LearningCurve.cs │ │ └── LearningCurve.cs.meta ├── Logs │ └── Packages-Update.log ├── Packages │ └── manifest.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ └── XRSettings.asset ├── Ch_04_Starter_HeroBorn ├── .DS_Store ├── Assets │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── LearningCurve.cs │ │ └── LearningCurve.cs.meta ├── Logs │ └── Packages-Update.log ├── Packages │ └── manifest.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ └── XRSettings.asset ├── Ch_05_Starter_HeroBorn ├── Assets │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── LearningCurve.cs │ │ └── LearningCurve.cs.meta ├── Logs │ └── Packages-Update.log ├── Packages │ └── manifest.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ └── XRSettings.asset ├── Ch_06_Starter_HeroBorn ├── Assets │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── Character.cs │ │ ├── Character.cs.meta │ │ ├── LearningCurve.cs │ │ └── LearningCurve.cs.meta ├── Logs │ └── Packages-Update.log ├── Packages │ └── manifest.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ └── XRSettings.asset ├── Ch_07_Starter_HeroBorn ├── Assets │ ├── Animations.meta │ ├── Animations │ │ ├── Health_Pickup.controller │ │ ├── Health_Pickup.controller.meta │ │ ├── Pickup_Spin.anim │ │ └── Pickup_Spin.anim.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Ground_Mat.mat │ │ ├── Ground_Mat.mat.meta │ │ ├── Item_Mat.mat │ │ └── Item_Mat.mat.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Barrier.prefab │ │ ├── Barrier.prefab.meta │ │ ├── Pickup_Item.prefab │ │ └── Pickup_Item.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── .DS_Store │ │ ├── Character.cs │ │ ├── Character.cs.meta │ │ ├── LearningCurve.cs │ │ └── LearningCurve.cs.meta ├── Logs │ └── Packages-Update.log ├── Packages │ └── manifest.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ └── XRSettings.asset ├── Ch_08_Starter_HeroBorn ├── Assets │ ├── Animations.meta │ ├── Animations │ │ ├── Health_Pickup.controller │ │ ├── Health_Pickup.controller.meta │ │ ├── Pickup_Spin.anim │ │ └── Pickup_Spin.anim.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Enemy_Mat.mat │ │ ├── Enemy_Mat.mat.meta │ │ ├── Ground_Mat.mat │ │ ├── Ground_Mat.mat.meta │ │ ├── Item_Mat.mat │ │ ├── Item_Mat.mat.meta │ │ ├── Player_Mat.mat │ │ └── Player_Mat.mat.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Barrier.prefab │ │ ├── Barrier.prefab.meta │ │ ├── Pickup_Item.prefab │ │ └── Pickup_Item.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── CameraBehavior.cs │ │ ├── CameraBehavior.cs.meta │ │ ├── Character.cs │ │ ├── Character.cs.meta │ │ ├── EnemyBehavior.cs │ │ ├── EnemyBehavior.cs.meta │ │ ├── ItemBehavior.cs │ │ ├── ItemBehavior.cs.meta │ │ ├── LearningCurve.cs │ │ ├── LearningCurve.cs.meta │ │ ├── PlayerBehavior.cs │ │ └── PlayerBehavior.cs.meta ├── Logs │ └── Packages-Update.log ├── Packages │ └── manifest.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ └── XRSettings.asset ├── Ch_09_Starter_HeroBorn ├── Assets │ ├── Animations.meta │ ├── Animations │ │ ├── Health_Pickup.controller │ │ ├── Health_Pickup.controller.meta │ │ ├── Pickup_Spin.anim │ │ └── Pickup_Spin.anim.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Enemy_Mat.mat │ │ ├── Enemy_Mat.mat.meta │ │ ├── Ground_Mat.mat │ │ ├── Ground_Mat.mat.meta │ │ ├── Item_Mat.mat │ │ ├── Item_Mat.mat.meta │ │ ├── Orb_Mat.mat │ │ ├── Orb_Mat.mat.meta │ │ ├── Player_Mat.mat │ │ └── Player_Mat.mat.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Barrier.prefab │ │ ├── Barrier.prefab.meta │ │ ├── Bullet.prefab │ │ ├── Bullet.prefab.meta │ │ ├── Pickup_Item.prefab │ │ └── Pickup_Item.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.unity │ │ └── SampleScene.unity.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── BulletBehavior.cs │ │ ├── BulletBehavior.cs.meta │ │ ├── CameraBehavior.cs │ │ ├── CameraBehavior.cs.meta │ │ ├── Character.cs │ │ ├── Character.cs.meta │ │ ├── EnemyBehavior.cs │ │ ├── EnemyBehavior.cs.meta │ │ ├── GameBehavior.cs │ │ ├── GameBehavior.cs.meta │ │ ├── ItemBehavior.cs │ │ ├── ItemBehavior.cs.meta │ │ ├── LearningCurve.cs │ │ ├── LearningCurve.cs.meta │ │ ├── PlayerBehavior.cs │ │ └── PlayerBehavior.cs.meta ├── Logs │ └── Packages-Update.log ├── Packages │ └── manifest.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ └── XRSettings.asset ├── Ch_10_Starter_HeroBorn ├── Assets │ ├── Animations.meta │ ├── Animations │ │ ├── Health_Pickup.controller │ │ ├── Health_Pickup.controller.meta │ │ ├── Pickup_Spin.anim │ │ └── Pickup_Spin.anim.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Enemy_Mat.mat │ │ ├── Enemy_Mat.mat.meta │ │ ├── Ground_Mat.mat │ │ ├── Ground_Mat.mat.meta │ │ ├── Item_Mat.mat │ │ ├── Item_Mat.mat.meta │ │ ├── Orb_Mat.mat │ │ ├── Orb_Mat.mat.meta │ │ ├── Player_Mat.mat │ │ └── Player_Mat.mat.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Barrier.prefab │ │ ├── Barrier.prefab.meta │ │ ├── Bullet.prefab │ │ ├── Bullet.prefab.meta │ │ ├── Pickup_Item.prefab │ │ └── Pickup_Item.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.meta │ │ ├── SampleScene.unity │ │ ├── SampleScene.unity.meta │ │ └── SampleScene │ │ │ ├── NavMesh.asset │ │ │ └── NavMesh.asset.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── BulletBehavior.cs │ │ ├── BulletBehavior.cs.meta │ │ ├── CameraBehavior.cs │ │ ├── CameraBehavior.cs.meta │ │ ├── Character.cs │ │ ├── Character.cs.meta │ │ ├── EnemyBehavior.cs │ │ ├── EnemyBehavior.cs.meta │ │ ├── GameBehavior.cs │ │ ├── GameBehavior.cs.meta │ │ ├── ItemBehavior.cs │ │ ├── ItemBehavior.cs.meta │ │ ├── LearningCurve.cs │ │ ├── LearningCurve.cs.meta │ │ ├── PlayerBehavior.cs │ │ └── PlayerBehavior.cs.meta ├── Logs │ └── Packages-Update.log ├── Packages │ └── manifest.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ └── XRSettings.asset ├── Ch_11_Starter_HeroBorn ├── Assets │ ├── Animations.meta │ ├── Animations │ │ ├── Health_Pickup.controller │ │ ├── Health_Pickup.controller.meta │ │ ├── Pickup_Spin.anim │ │ └── Pickup_Spin.anim.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Enemy_Mat.mat │ │ ├── Enemy_Mat.mat.meta │ │ ├── Ground_Mat.mat │ │ ├── Ground_Mat.mat.meta │ │ ├── Item_Mat.mat │ │ ├── Item_Mat.mat.meta │ │ ├── Orb_Mat.mat │ │ ├── Orb_Mat.mat.meta │ │ ├── Player_Mat.mat │ │ └── Player_Mat.mat.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Barrier.prefab │ │ ├── Barrier.prefab.meta │ │ ├── Bullet.prefab │ │ ├── Bullet.prefab.meta │ │ ├── Pickup_Item.prefab │ │ └── Pickup_Item.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.meta │ │ ├── SampleScene.unity │ │ ├── SampleScene.unity.meta │ │ └── SampleScene │ │ │ ├── NavMesh.asset │ │ │ └── NavMesh.asset.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── .DS_Store │ │ ├── BulletBehavior.cs │ │ ├── BulletBehavior.cs.meta │ │ ├── CameraBehavior.cs │ │ ├── CameraBehavior.cs.meta │ │ ├── Character.cs │ │ ├── Character.cs.meta │ │ ├── EnemyBehavior.cs │ │ ├── EnemyBehavior.cs.meta │ │ ├── Extensions.cs │ │ ├── Extensions.cs.meta │ │ ├── GameBehavior.cs │ │ ├── GameBehavior.cs.meta │ │ ├── IManager.cs │ │ ├── IManager.cs.meta │ │ ├── ItemBehavior.cs │ │ ├── ItemBehavior.cs.meta │ │ ├── LearningCurve.cs │ │ ├── LearningCurve.cs.meta │ │ ├── PlayerBehavior.cs │ │ ├── PlayerBehavior.cs.meta │ │ ├── Utilities.cs │ │ └── Utilities.cs.meta ├── Logs │ └── Packages-Update.log ├── Packages │ └── manifest.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ └── XRSettings.asset ├── FINAL_HeroBorn ├── Assets │ ├── Animations.meta │ ├── Animations │ │ ├── Health_Pickup.controller │ │ ├── Health_Pickup.controller.meta │ │ ├── Pickup_Spin.anim │ │ └── Pickup_Spin.anim.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Enemy_Mat.mat │ │ ├── Enemy_Mat.mat.meta │ │ ├── Ground_Mat.mat │ │ ├── Ground_Mat.mat.meta │ │ ├── Item_Mat.mat │ │ ├── Item_Mat.mat.meta │ │ ├── Orb_Mat.mat │ │ ├── Orb_Mat.mat.meta │ │ ├── Player_Mat.mat │ │ └── Player_Mat.mat.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Barrier.prefab │ │ ├── Barrier.prefab.meta │ │ ├── Bullet.prefab │ │ ├── Bullet.prefab.meta │ │ ├── Pickup_Item.prefab │ │ └── Pickup_Item.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── SampleScene.meta │ │ ├── SampleScene.unity │ │ ├── SampleScene.unity.meta │ │ └── SampleScene │ │ │ ├── NavMesh.asset │ │ │ └── NavMesh.asset.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── BulletBehavior.cs │ │ ├── BulletBehavior.cs.meta │ │ ├── CameraBehavior.cs │ │ ├── CameraBehavior.cs.meta │ │ ├── Character.cs │ │ ├── Character.cs.meta │ │ ├── EnemyBehavior.cs │ │ ├── EnemyBehavior.cs.meta │ │ ├── Extensions.cs │ │ ├── Extensions.cs.meta │ │ ├── GameBehavior.cs │ │ ├── GameBehavior.cs.meta │ │ ├── IManager.cs │ │ ├── IManager.cs.meta │ │ ├── InventoryList.cs │ │ ├── InventoryList.cs.meta │ │ ├── ItemBehavior.cs │ │ ├── ItemBehavior.cs.meta │ │ ├── LearningCurve.cs │ │ ├── LearningCurve.cs.meta │ │ ├── PlayerBehavior.cs │ │ ├── PlayerBehavior.cs.meta │ │ ├── Utilities.cs │ │ └── Utilities.cs.meta ├── Logs │ └── Packages-Update.log ├── Packages │ └── manifest.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ └── XRSettings.asset ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/.gitignore -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/.DS_Store -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/Assets/Scenes.meta -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/Assets/Scripts.meta -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/Packages/manifest.json -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /Ch_02_Starter_HeroBorn/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_02_Starter_HeroBorn/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/Assets/Scenes.meta -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/Assets/Scripts.meta -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/Packages/manifest.json -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /Ch_03_Starter_HeroBorn/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_03_Starter_HeroBorn/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/.DS_Store -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/Assets/Scenes.meta -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/Assets/Scripts.meta -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/Packages/manifest.json -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /Ch_04_Starter_HeroBorn/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_04_Starter_HeroBorn/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/Assets/Scenes.meta -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/Assets/Scripts.meta -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/Packages/manifest.json -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /Ch_05_Starter_HeroBorn/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_05_Starter_HeroBorn/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/Assets/Scenes.meta -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/Assets/Scripts.meta -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/Assets/Scripts/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/Assets/Scripts/Character.cs -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/Assets/Scripts/Character.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/Assets/Scripts/Character.cs.meta -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/Packages/manifest.json -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /Ch_06_Starter_HeroBorn/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_06_Starter_HeroBorn/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Animations.meta -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller.meta -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim.meta -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Materials.meta -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Materials/Item_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Materials/Item_Mat.mat -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Materials/Item_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Materials/Item_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab.meta -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab.meta -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Scenes.meta -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Scripts.meta -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Scripts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Scripts/.DS_Store -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Scripts/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Scripts/Character.cs -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Scripts/Character.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Scripts/Character.cs.meta -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/Packages/manifest.json -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /Ch_07_Starter_HeroBorn/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_07_Starter_HeroBorn/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Animations.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Materials.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Materials/Enemy_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Materials/Enemy_Mat.mat -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Materials/Enemy_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Materials/Enemy_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Materials/Item_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Materials/Item_Mat.mat -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Materials/Item_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Materials/Item_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Materials/Player_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Materials/Player_Mat.mat -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Materials/Player_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Materials/Player_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Scenes.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Scripts.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Scripts/CameraBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Scripts/CameraBehavior.cs -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Scripts/CameraBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Scripts/CameraBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Scripts/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Scripts/Character.cs -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Scripts/Character.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Scripts/Character.cs.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Scripts/EnemyBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Scripts/EnemyBehavior.cs -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Scripts/EnemyBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Scripts/EnemyBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Scripts/ItemBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Scripts/ItemBehavior.cs -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Scripts/ItemBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Scripts/ItemBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Scripts/PlayerBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Scripts/PlayerBehavior.cs -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Assets/Scripts/PlayerBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Assets/Scripts/PlayerBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/Packages/manifest.json -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /Ch_08_Starter_HeroBorn/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_08_Starter_HeroBorn/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Animations.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Materials.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Materials/Enemy_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Materials/Enemy_Mat.mat -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Materials/Enemy_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Materials/Enemy_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Materials/Item_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Materials/Item_Mat.mat -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Materials/Item_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Materials/Item_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Materials/Orb_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Materials/Orb_Mat.mat -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Materials/Orb_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Materials/Orb_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Materials/Player_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Materials/Player_Mat.mat -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Materials/Player_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Materials/Player_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Prefabs/Bullet.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Prefabs/Bullet.prefab -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Prefabs/Bullet.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Prefabs/Bullet.prefab.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scenes.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scripts.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scripts/BulletBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scripts/BulletBehavior.cs -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scripts/BulletBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scripts/BulletBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scripts/CameraBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scripts/CameraBehavior.cs -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scripts/CameraBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scripts/CameraBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scripts/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scripts/Character.cs -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scripts/Character.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scripts/Character.cs.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scripts/EnemyBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scripts/EnemyBehavior.cs -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scripts/EnemyBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scripts/EnemyBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scripts/GameBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scripts/GameBehavior.cs -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scripts/GameBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scripts/GameBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scripts/ItemBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scripts/ItemBehavior.cs -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scripts/ItemBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scripts/ItemBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scripts/PlayerBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scripts/PlayerBehavior.cs -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Assets/Scripts/PlayerBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Assets/Scripts/PlayerBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/Packages/manifest.json -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /Ch_09_Starter_HeroBorn/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_09_Starter_HeroBorn/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Animations.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Materials.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Materials/Enemy_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Materials/Enemy_Mat.mat -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Materials/Enemy_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Materials/Enemy_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Materials/Item_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Materials/Item_Mat.mat -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Materials/Item_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Materials/Item_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Materials/Orb_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Materials/Orb_Mat.mat -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Materials/Orb_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Materials/Orb_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Materials/Player_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Materials/Player_Mat.mat -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Materials/Player_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Materials/Player_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Prefabs/Bullet.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Prefabs/Bullet.prefab -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Prefabs/Bullet.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Prefabs/Bullet.prefab.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scenes.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scenes/SampleScene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scenes/SampleScene.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scenes/SampleScene/NavMesh.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scenes/SampleScene/NavMesh.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scenes/SampleScene/NavMesh.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scenes/SampleScene/NavMesh.asset.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scripts.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scripts/BulletBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scripts/BulletBehavior.cs -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scripts/BulletBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scripts/BulletBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scripts/CameraBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scripts/CameraBehavior.cs -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scripts/CameraBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scripts/CameraBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scripts/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scripts/Character.cs -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scripts/Character.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scripts/Character.cs.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scripts/EnemyBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scripts/EnemyBehavior.cs -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scripts/EnemyBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scripts/EnemyBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scripts/GameBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scripts/GameBehavior.cs -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scripts/GameBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scripts/GameBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scripts/ItemBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scripts/ItemBehavior.cs -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scripts/ItemBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scripts/ItemBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scripts/PlayerBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scripts/PlayerBehavior.cs -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Assets/Scripts/PlayerBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Assets/Scripts/PlayerBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/Packages/manifest.json -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /Ch_10_Starter_HeroBorn/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_10_Starter_HeroBorn/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Animations.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Animations/Health_Pickup.controller.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Animations/Pickup_Spin.anim.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Materials.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Materials/Enemy_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Materials/Enemy_Mat.mat -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Materials/Enemy_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Materials/Enemy_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Materials/Ground_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Materials/Item_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Materials/Item_Mat.mat -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Materials/Item_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Materials/Item_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Materials/Orb_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Materials/Orb_Mat.mat -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Materials/Orb_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Materials/Orb_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Materials/Player_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Materials/Player_Mat.mat -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Materials/Player_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Materials/Player_Mat.mat.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Prefabs/Barrier.prefab.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Prefabs/Bullet.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Prefabs/Bullet.prefab -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Prefabs/Bullet.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Prefabs/Bullet.prefab.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Prefabs/Pickup_Item.prefab.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scenes.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scenes/SampleScene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scenes/SampleScene.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scenes/SampleScene/NavMesh.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scenes/SampleScene/NavMesh.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scenes/SampleScene/NavMesh.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scenes/SampleScene/NavMesh.asset.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/.DS_Store -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/BulletBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/BulletBehavior.cs -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/BulletBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/BulletBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/CameraBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/CameraBehavior.cs -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/CameraBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/CameraBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/Character.cs -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/Character.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/Character.cs.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/EnemyBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/EnemyBehavior.cs -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/EnemyBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/EnemyBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/Extensions.cs -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/Extensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/Extensions.cs.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/GameBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/GameBehavior.cs -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/GameBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/GameBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/IManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/IManager.cs -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/IManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/IManager.cs.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/ItemBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/ItemBehavior.cs -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/ItemBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/ItemBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/LearningCurve.cs.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/PlayerBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/PlayerBehavior.cs -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/PlayerBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/PlayerBehavior.cs.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/Utilities.cs -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Assets/Scripts/Utilities.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Assets/Scripts/Utilities.cs.meta -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/Packages/manifest.json -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /Ch_11_Starter_HeroBorn/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/Ch_11_Starter_HeroBorn/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Animations.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Animations/Health_Pickup.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Animations/Health_Pickup.controller -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Animations/Health_Pickup.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Animations/Health_Pickup.controller.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Animations/Pickup_Spin.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Animations/Pickup_Spin.anim -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Animations/Pickup_Spin.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Animations/Pickup_Spin.anim.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Materials.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Materials/Enemy_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Materials/Enemy_Mat.mat -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Materials/Enemy_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Materials/Enemy_Mat.mat.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Materials/Ground_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Materials/Ground_Mat.mat -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Materials/Ground_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Materials/Ground_Mat.mat.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Materials/Item_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Materials/Item_Mat.mat -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Materials/Item_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Materials/Item_Mat.mat.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Materials/Orb_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Materials/Orb_Mat.mat -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Materials/Orb_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Materials/Orb_Mat.mat.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Materials/Player_Mat.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Materials/Player_Mat.mat -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Materials/Player_Mat.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Materials/Player_Mat.mat.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Prefabs.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Prefabs/Barrier.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Prefabs/Barrier.prefab -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Prefabs/Barrier.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Prefabs/Barrier.prefab.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Prefabs/Bullet.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Prefabs/Bullet.prefab -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Prefabs/Bullet.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Prefabs/Bullet.prefab.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Prefabs/Pickup_Item.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Prefabs/Pickup_Item.prefab -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Prefabs/Pickup_Item.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Prefabs/Pickup_Item.prefab.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scenes.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scenes/SampleScene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scenes/SampleScene.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scenes/SampleScene/NavMesh.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scenes/SampleScene/NavMesh.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scenes/SampleScene/NavMesh.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scenes/SampleScene/NavMesh.asset.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/BulletBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/BulletBehavior.cs -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/BulletBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/BulletBehavior.cs.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/CameraBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/CameraBehavior.cs -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/CameraBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/CameraBehavior.cs.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/Character.cs -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/Character.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/Character.cs.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/EnemyBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/EnemyBehavior.cs -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/EnemyBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/EnemyBehavior.cs.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/Extensions.cs -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/Extensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/Extensions.cs.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/GameBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/GameBehavior.cs -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/GameBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/GameBehavior.cs.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/IManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/IManager.cs -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/IManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/IManager.cs.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/InventoryList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/InventoryList.cs -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/InventoryList.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/InventoryList.cs.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/ItemBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/ItemBehavior.cs -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/ItemBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/ItemBehavior.cs.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/LearningCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/LearningCurve.cs -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/LearningCurve.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/LearningCurve.cs.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/PlayerBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/PlayerBehavior.cs -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/PlayerBehavior.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/PlayerBehavior.cs.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/Utilities.cs -------------------------------------------------------------------------------- /FINAL_HeroBorn/Assets/Scripts/Utilities.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Assets/Scripts/Utilities.cs.meta -------------------------------------------------------------------------------- /FINAL_HeroBorn/Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Logs/Packages-Update.log -------------------------------------------------------------------------------- /FINAL_HeroBorn/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/Packages/manifest.json -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /FINAL_HeroBorn/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/FINAL_HeroBorn/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Learning-C-by-Developing-Games-with-Unity-2019/HEAD/README.md --------------------------------------------------------------------------------