├── .gitignore ├── Assets ├── Editor │ ├── ActionAsset.cs │ ├── ActionEditor.cs │ ├── ActionSetEditor.cs │ ├── CharacterMovementEditor.cs │ ├── CustomAssetUtility.cs │ ├── EventsFoldout.cs │ ├── ParticleManagerEditor.cs │ └── TweenTestEditor.cs ├── PhysicsMaterials │ ├── Crate.physicsMaterial2D │ └── Ice.physicsMaterial2D ├── Prefabs │ ├── Levels │ │ ├── LevelCell_Obstacle.prefab │ │ ├── LevelCell_Obstacle_01.prefab │ │ ├── LevelCell_Obstacle_Green.prefab │ │ ├── LevelCell_Obstacle_White.prefab │ │ ├── LevelCell_Traversable_01.prefab │ │ ├── LevelCell_Traversable_02.prefab │ │ ├── LevelCell_Traversable_03.prefab │ │ └── LevelCell_Traversable_04.prefab │ ├── Melee.asset │ ├── Particles │ │ ├── ExplosionEffect.prefab │ │ ├── GlassExplosionEffect.prefab │ │ ├── GlassExplosionEffect_Backup_1.prefab │ │ └── Slash │ │ │ ├── Backup │ │ │ ├── Player_Axe_A2_Backup_1.prefab │ │ │ ├── Player_Axe_A3_Backup_1.prefab │ │ │ ├── Player_Axe_A3_Backup_2.prefab │ │ │ ├── Slash_Axe_Backup_1.prefab │ │ │ ├── Slash_Axe_Backup_2.prefab │ │ │ ├── Slash_Axe_Backup_3.prefab │ │ │ ├── Slash_Axe_Backup_4.prefab │ │ │ ├── Slash_Axe_Backup_5.prefab │ │ │ ├── Slash_Axe_Backup_6.prefab │ │ │ └── Slash_Confetti.prefab │ │ │ ├── Player_Axe_A1.prefab │ │ │ ├── Player_Axe_A2.prefab │ │ │ ├── Player_Axe_A3.prefab │ │ │ ├── Player_Slash_Axe_A1.prefab │ │ │ ├── Player_Slash_Axe_A2.prefab │ │ │ ├── Player_Slash_Axe_A3.prefab │ │ │ └── Slash_Axe.prefab │ ├── Player │ │ ├── Melee_Dash_Player.asset │ │ ├── Melee_Player.asset │ │ ├── Melee_Player_A1.asset │ │ ├── Melee_Player_A2.asset │ │ ├── Melee_Player_A3.asset │ │ ├── Parry_Player.asset │ │ ├── _Melee_Player_A1_Backup.asset │ │ └── _Melee_Player_A1_Backup_2.asset │ ├── UI │ │ └── DamageLabel.prefab │ └── Zombie │ │ ├── Behavior.asset │ │ ├── BehaviorTree.asset │ │ ├── BehaviorTree_2.asset │ │ ├── BehaviorTree_3.asset │ │ ├── Behavior_2.asset │ │ ├── Behavior_3.asset │ │ ├── Melee_Zombie.asset │ │ ├── Zombie.prefab │ │ ├── Zombie_Backup_01.prefab │ │ ├── Zombie_Backup_02.prefab │ │ └── Zombie_Level2.prefab ├── Resources │ ├── Particles │ │ ├── GlassShard │ │ │ ├── 1x │ │ │ │ ├── GlassShard0001.png │ │ │ │ └── GlassShard0002.png │ │ │ ├── 2x │ │ │ │ ├── GlassShard0001.png │ │ │ │ └── GlassShard0002.png │ │ │ ├── GlassShard0001.mat │ │ │ ├── GlassShard0001.png │ │ │ ├── GlassShard0002.mat │ │ │ └── GlassShard0002.png │ │ ├── Slash │ │ │ ├── 1x │ │ │ │ ├── HitLine.png │ │ │ │ ├── ParticleRing.png │ │ │ │ ├── SlashEffect_Inner.png │ │ │ │ ├── SlashEffect_Outer.png │ │ │ │ ├── SlashEffect_Particles_A.png │ │ │ │ └── SlashLine.png │ │ │ ├── 2x │ │ │ │ ├── HitLine.png │ │ │ │ ├── ParticleRing.png │ │ │ │ ├── SlashEffect_Inner.png │ │ │ │ ├── SlashEffect_Outer.png │ │ │ │ ├── SlashEffect_Particles_A.png │ │ │ │ └── SlashLine.png │ │ │ ├── HitLine.mat │ │ │ ├── HitLine.png │ │ │ ├── ParticleRing.mat │ │ │ ├── ParticleRing.png │ │ │ ├── SlashEffect_Inner.mat │ │ │ ├── SlashEffect_Inner.png │ │ │ ├── SlashEffect_Outer.mat │ │ │ ├── SlashEffect_Outer.png │ │ │ ├── SlashEffect_Particles_A.png │ │ │ └── SlashLine.png │ │ └── X-WeaponTrail Custom │ │ │ ├── slash03.mat │ │ │ ├── slash03.psd │ │ │ ├── slash04.psd │ │ │ ├── slash05.psd │ │ │ └── slash06.psd │ └── UI │ │ ├── General │ │ ├── 1x │ │ │ ├── PlayerHealthBar_BG.png │ │ │ ├── PlayerHealthBar_Fill.png │ │ │ └── RoundedSquare_BG.png │ │ ├── 2x │ │ │ ├── PlayerHealthBar_BG.png │ │ │ ├── PlayerHealthBar_Fill.png │ │ │ └── RoundedSquare_BG.png │ │ ├── PlayerHealthBar_BG.png │ │ ├── PlayerHealthBar_Fill.png │ │ └── RoundedSquare_BG.png │ │ └── MainMenu │ │ └── Widgets │ │ ├── WidgetsAtlas.png │ │ ├── WidgetsAtlas@2x.png │ │ └── WidgetsAtlas@4x.png ├── Scenes │ ├── Game │ │ ├── Game.unity │ │ ├── Game_02.unity │ │ ├── Game_03.unity │ │ ├── Game_04.unity │ │ ├── Game_05.unity │ │ ├── Game_06.unity │ │ ├── Game_07.unity │ │ ├── Game_08.unity │ │ ├── Game_09.unity │ │ ├── Game_10.unity │ │ ├── Game_11.unity │ │ ├── Game_12.unity │ │ ├── Game_13.unity │ │ ├── Game_14 (After Project Submission).unity │ │ ├── Game_15.unity │ │ ├── Game_16.unity │ │ ├── Game_17.unity │ │ ├── Game_18.unity │ │ ├── Game_19.unity │ │ ├── Game_20.unity │ │ ├── Game_21.unity │ │ ├── Game_22.unity │ │ ├── Game_23.unity │ │ └── SteeringTest.unity │ ├── Game_Fix │ │ └── Game_Fix_01.unity │ ├── Test │ │ ├── IntensityTest_01.unity │ │ ├── IntensityTest_02.unity │ │ ├── IntensityTest_03.unity │ │ ├── IntensityTest_04.unity │ │ ├── IntensityTest_05.unity │ │ ├── IntensityTest_06.unity │ │ ├── IntensityTest_07.unity │ │ ├── IntensityTest_08.unity │ │ ├── IntensityTest_09.unity │ │ ├── IntensityTest_10.unity │ │ ├── IntensityTest_11.unity │ │ ├── LevelOverhead_01.unity │ │ └── SteeringTest_01.unity │ └── UI │ │ ├── Init.unity │ │ └── MainMenu.unity ├── Scripts │ ├── Game │ │ ├── AI │ │ │ ├── AIDirector.cs │ │ │ ├── AISettings.cs │ │ │ ├── AISpawner.cs │ │ │ ├── AnxietyMonitor.cs │ │ │ ├── CanAttack.cs │ │ │ ├── CircleTarget.cs │ │ │ ├── DistanceToTransform.cs │ │ │ ├── EnemyAISettings.cs │ │ │ ├── EnemyMob.cs │ │ │ ├── EpochSettings.cs │ │ │ ├── FaceTarget.cs │ │ │ ├── HasEnteredTrigger2D.cs │ │ │ ├── IsBusy.cs │ │ │ ├── MoveTo.cs │ │ │ ├── ObstacleDetector.cs │ │ │ ├── PerformMove.cs │ │ │ ├── PlayerCombatAutomation.cs │ │ │ ├── PlayerWalkAutomation.cs │ │ │ ├── SelectCombatMove.cs │ │ │ ├── Steer.cs │ │ │ └── StopAttacking.cs │ │ ├── Action │ │ │ ├── Action.cs │ │ │ ├── ActionScriptableObject.cs │ │ │ ├── ActionSet.cs │ │ │ ├── BasicActions.cs │ │ │ ├── Event.cs │ │ │ ├── Force.cs │ │ │ ├── HitBox.cs │ │ │ └── HitBoxObject.cs │ │ ├── Character │ │ │ ├── Character.cs │ │ │ ├── CharacterAI.cs │ │ │ ├── CharacterAnchor.cs │ │ │ ├── CharacterAnimator.cs │ │ │ ├── CharacterCollider.cs │ │ │ ├── CharacterControl.cs │ │ │ ├── CharacterForces.cs │ │ │ ├── CharacterMovement.cs │ │ │ ├── CharacterStats.cs │ │ │ ├── CharacterTarget.cs │ │ │ ├── EnemyAI.cs │ │ │ ├── EnemyStats.cs │ │ │ ├── IMovement.cs │ │ │ ├── MoveToTarget.cs │ │ │ ├── Neighbourhood.cs │ │ │ ├── PlayerAnimator.cs │ │ │ ├── PlayerConstants.cs │ │ │ ├── RegeneratingHealth.cs │ │ │ ├── SkeletonFlasher.cs │ │ │ └── Steerable.cs │ │ ├── Input │ │ │ ├── CombatTouchProcessor.cs │ │ │ ├── ITouchProcessor.cs │ │ │ ├── InputManager.cs │ │ │ ├── TouchInfo.cs │ │ │ └── TouchRegion.cs │ │ ├── Level │ │ │ ├── Cell.cs │ │ │ ├── GridNavigator.cs │ │ │ ├── Level.cs │ │ │ └── LevelCell.cs │ │ ├── Managers │ │ │ ├── GameCamera.cs │ │ │ ├── GameManager.cs │ │ │ ├── ParticleManager.cs │ │ │ ├── SoundManager.cs │ │ │ └── TimeManager.cs │ │ ├── Props │ │ │ ├── OnCollision.cs │ │ │ ├── ShakePosition.cs │ │ │ ├── ShakeRotation.cs │ │ │ ├── Util_Easing.cs │ │ │ └── Util_Noise.cs │ │ └── Sprites │ │ │ ├── SkeletonEffects.cs │ │ │ ├── SkeletonFlash.shader │ │ │ ├── SkeletonGhost.cs │ │ │ ├── SkeletonGhostFlasher.cs │ │ │ └── SpriteDepth.cs │ ├── UI │ │ ├── ApplicationInitializer.CS │ │ ├── DamageLabel.cs │ │ ├── HudManager.cs │ │ ├── MainMenuManager.cs │ │ ├── PlayerAnxietySlider.cs │ │ ├── PlayerHealthSlider.cs │ │ ├── SliderText.cs │ │ └── WorldToCanvas.cs │ └── Utils │ │ ├── ArrayUtils.cs │ │ ├── DebugTimeScale.cs │ │ ├── Extensions │ │ ├── DictionaryExtensions.cs │ │ └── VectorExtensions.cs │ │ ├── GameObjectPool.cs │ │ ├── LayerUtils.cs │ │ ├── ParticleEffectPool.cs │ │ ├── Pool.cs │ │ ├── Range.cs │ │ ├── Testing │ │ ├── IntensityUnitTest.cs │ │ ├── SteeringUnitTest.cs │ │ └── WriteIntensityToFile.cs │ │ ├── TweenTest.cs │ │ ├── Tweener.cs │ │ └── UIUtils.cs └── UI │ └── Animations │ └── UI │ └── Button.controller ├── Builds └── builds.txt ├── ProjectSettings ├── AudioManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityAdsSettings.asset └── UnityAnalyticsManager.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Editor/ActionAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Editor/ActionAsset.cs -------------------------------------------------------------------------------- /Assets/Editor/ActionEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Editor/ActionEditor.cs -------------------------------------------------------------------------------- /Assets/Editor/ActionSetEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Editor/ActionSetEditor.cs -------------------------------------------------------------------------------- /Assets/Editor/CharacterMovementEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Editor/CharacterMovementEditor.cs -------------------------------------------------------------------------------- /Assets/Editor/CustomAssetUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Editor/CustomAssetUtility.cs -------------------------------------------------------------------------------- /Assets/Editor/EventsFoldout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Editor/EventsFoldout.cs -------------------------------------------------------------------------------- /Assets/Editor/ParticleManagerEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Editor/ParticleManagerEditor.cs -------------------------------------------------------------------------------- /Assets/Editor/TweenTestEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Editor/TweenTestEditor.cs -------------------------------------------------------------------------------- /Assets/PhysicsMaterials/Crate.physicsMaterial2D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/PhysicsMaterials/Crate.physicsMaterial2D -------------------------------------------------------------------------------- /Assets/PhysicsMaterials/Ice.physicsMaterial2D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/PhysicsMaterials/Ice.physicsMaterial2D -------------------------------------------------------------------------------- /Assets/Prefabs/Levels/LevelCell_Obstacle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Levels/LevelCell_Obstacle.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Levels/LevelCell_Obstacle_01.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Levels/LevelCell_Obstacle_01.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Levels/LevelCell_Obstacle_Green.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Levels/LevelCell_Obstacle_Green.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Levels/LevelCell_Obstacle_White.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Levels/LevelCell_Obstacle_White.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Levels/LevelCell_Traversable_01.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Levels/LevelCell_Traversable_01.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Levels/LevelCell_Traversable_02.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Levels/LevelCell_Traversable_02.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Levels/LevelCell_Traversable_03.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Levels/LevelCell_Traversable_03.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Levels/LevelCell_Traversable_04.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Levels/LevelCell_Traversable_04.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Melee.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Melee.asset -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/ExplosionEffect.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/ExplosionEffect.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/GlassExplosionEffect.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/GlassExplosionEffect.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/GlassExplosionEffect_Backup_1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/GlassExplosionEffect_Backup_1.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/Slash/Backup/Player_Axe_A2_Backup_1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/Slash/Backup/Player_Axe_A2_Backup_1.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/Slash/Backup/Player_Axe_A3_Backup_1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/Slash/Backup/Player_Axe_A3_Backup_1.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/Slash/Backup/Player_Axe_A3_Backup_2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/Slash/Backup/Player_Axe_A3_Backup_2.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/Slash/Backup/Slash_Axe_Backup_1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/Slash/Backup/Slash_Axe_Backup_1.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/Slash/Backup/Slash_Axe_Backup_2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/Slash/Backup/Slash_Axe_Backup_2.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/Slash/Backup/Slash_Axe_Backup_3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/Slash/Backup/Slash_Axe_Backup_3.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/Slash/Backup/Slash_Axe_Backup_4.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/Slash/Backup/Slash_Axe_Backup_4.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/Slash/Backup/Slash_Axe_Backup_5.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/Slash/Backup/Slash_Axe_Backup_5.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/Slash/Backup/Slash_Axe_Backup_6.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/Slash/Backup/Slash_Axe_Backup_6.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/Slash/Backup/Slash_Confetti.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/Slash/Backup/Slash_Confetti.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/Slash/Player_Axe_A1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/Slash/Player_Axe_A1.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/Slash/Player_Axe_A2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/Slash/Player_Axe_A2.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/Slash/Player_Axe_A3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/Slash/Player_Axe_A3.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/Slash/Player_Slash_Axe_A1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/Slash/Player_Slash_Axe_A1.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/Slash/Player_Slash_Axe_A2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/Slash/Player_Slash_Axe_A2.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/Slash/Player_Slash_Axe_A3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/Slash/Player_Slash_Axe_A3.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Particles/Slash/Slash_Axe.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Particles/Slash/Slash_Axe.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Player/Melee_Dash_Player.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Player/Melee_Dash_Player.asset -------------------------------------------------------------------------------- /Assets/Prefabs/Player/Melee_Player.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Player/Melee_Player.asset -------------------------------------------------------------------------------- /Assets/Prefabs/Player/Melee_Player_A1.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Player/Melee_Player_A1.asset -------------------------------------------------------------------------------- /Assets/Prefabs/Player/Melee_Player_A2.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Player/Melee_Player_A2.asset -------------------------------------------------------------------------------- /Assets/Prefabs/Player/Melee_Player_A3.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Player/Melee_Player_A3.asset -------------------------------------------------------------------------------- /Assets/Prefabs/Player/Parry_Player.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Player/Parry_Player.asset -------------------------------------------------------------------------------- /Assets/Prefabs/Player/_Melee_Player_A1_Backup.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Player/_Melee_Player_A1_Backup.asset -------------------------------------------------------------------------------- /Assets/Prefabs/Player/_Melee_Player_A1_Backup_2.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Player/_Melee_Player_A1_Backup_2.asset -------------------------------------------------------------------------------- /Assets/Prefabs/UI/DamageLabel.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/UI/DamageLabel.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Zombie/Behavior.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Zombie/Behavior.asset -------------------------------------------------------------------------------- /Assets/Prefabs/Zombie/BehaviorTree.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Zombie/BehaviorTree.asset -------------------------------------------------------------------------------- /Assets/Prefabs/Zombie/BehaviorTree_2.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Zombie/BehaviorTree_2.asset -------------------------------------------------------------------------------- /Assets/Prefabs/Zombie/BehaviorTree_3.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Zombie/BehaviorTree_3.asset -------------------------------------------------------------------------------- /Assets/Prefabs/Zombie/Behavior_2.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Zombie/Behavior_2.asset -------------------------------------------------------------------------------- /Assets/Prefabs/Zombie/Behavior_3.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Zombie/Behavior_3.asset -------------------------------------------------------------------------------- /Assets/Prefabs/Zombie/Melee_Zombie.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Zombie/Melee_Zombie.asset -------------------------------------------------------------------------------- /Assets/Prefabs/Zombie/Zombie.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Zombie/Zombie.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Zombie/Zombie_Backup_01.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Zombie/Zombie_Backup_01.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Zombie/Zombie_Backup_02.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Zombie/Zombie_Backup_02.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Zombie/Zombie_Level2.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Prefabs/Zombie/Zombie_Level2.prefab -------------------------------------------------------------------------------- /Assets/Resources/Particles/GlassShard/1x/GlassShard0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/GlassShard/1x/GlassShard0001.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/GlassShard/1x/GlassShard0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/GlassShard/1x/GlassShard0002.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/GlassShard/2x/GlassShard0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/GlassShard/2x/GlassShard0001.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/GlassShard/2x/GlassShard0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/GlassShard/2x/GlassShard0002.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/GlassShard/GlassShard0001.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/GlassShard/GlassShard0001.mat -------------------------------------------------------------------------------- /Assets/Resources/Particles/GlassShard/GlassShard0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/GlassShard/GlassShard0001.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/GlassShard/GlassShard0002.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/GlassShard/GlassShard0002.mat -------------------------------------------------------------------------------- /Assets/Resources/Particles/GlassShard/GlassShard0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/GlassShard/GlassShard0002.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/1x/HitLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/1x/HitLine.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/1x/ParticleRing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/1x/ParticleRing.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/1x/SlashEffect_Inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/1x/SlashEffect_Inner.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/1x/SlashEffect_Outer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/1x/SlashEffect_Outer.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/1x/SlashEffect_Particles_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/1x/SlashEffect_Particles_A.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/1x/SlashLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/1x/SlashLine.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/2x/HitLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/2x/HitLine.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/2x/ParticleRing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/2x/ParticleRing.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/2x/SlashEffect_Inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/2x/SlashEffect_Inner.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/2x/SlashEffect_Outer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/2x/SlashEffect_Outer.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/2x/SlashEffect_Particles_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/2x/SlashEffect_Particles_A.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/2x/SlashLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/2x/SlashLine.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/HitLine.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/HitLine.mat -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/HitLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/HitLine.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/ParticleRing.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/ParticleRing.mat -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/ParticleRing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/ParticleRing.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/SlashEffect_Inner.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/SlashEffect_Inner.mat -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/SlashEffect_Inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/SlashEffect_Inner.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/SlashEffect_Outer.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/SlashEffect_Outer.mat -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/SlashEffect_Outer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/SlashEffect_Outer.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/SlashEffect_Particles_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/SlashEffect_Particles_A.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/Slash/SlashLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/Slash/SlashLine.png -------------------------------------------------------------------------------- /Assets/Resources/Particles/X-WeaponTrail Custom/slash03.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/X-WeaponTrail Custom/slash03.mat -------------------------------------------------------------------------------- /Assets/Resources/Particles/X-WeaponTrail Custom/slash03.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/X-WeaponTrail Custom/slash03.psd -------------------------------------------------------------------------------- /Assets/Resources/Particles/X-WeaponTrail Custom/slash04.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/X-WeaponTrail Custom/slash04.psd -------------------------------------------------------------------------------- /Assets/Resources/Particles/X-WeaponTrail Custom/slash05.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/X-WeaponTrail Custom/slash05.psd -------------------------------------------------------------------------------- /Assets/Resources/Particles/X-WeaponTrail Custom/slash06.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/Particles/X-WeaponTrail Custom/slash06.psd -------------------------------------------------------------------------------- /Assets/Resources/UI/General/1x/PlayerHealthBar_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/UI/General/1x/PlayerHealthBar_BG.png -------------------------------------------------------------------------------- /Assets/Resources/UI/General/1x/PlayerHealthBar_Fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/UI/General/1x/PlayerHealthBar_Fill.png -------------------------------------------------------------------------------- /Assets/Resources/UI/General/1x/RoundedSquare_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/UI/General/1x/RoundedSquare_BG.png -------------------------------------------------------------------------------- /Assets/Resources/UI/General/2x/PlayerHealthBar_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/UI/General/2x/PlayerHealthBar_BG.png -------------------------------------------------------------------------------- /Assets/Resources/UI/General/2x/PlayerHealthBar_Fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/UI/General/2x/PlayerHealthBar_Fill.png -------------------------------------------------------------------------------- /Assets/Resources/UI/General/2x/RoundedSquare_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/UI/General/2x/RoundedSquare_BG.png -------------------------------------------------------------------------------- /Assets/Resources/UI/General/PlayerHealthBar_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/UI/General/PlayerHealthBar_BG.png -------------------------------------------------------------------------------- /Assets/Resources/UI/General/PlayerHealthBar_Fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/UI/General/PlayerHealthBar_Fill.png -------------------------------------------------------------------------------- /Assets/Resources/UI/General/RoundedSquare_BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/UI/General/RoundedSquare_BG.png -------------------------------------------------------------------------------- /Assets/Resources/UI/MainMenu/Widgets/WidgetsAtlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/UI/MainMenu/Widgets/WidgetsAtlas.png -------------------------------------------------------------------------------- /Assets/Resources/UI/MainMenu/Widgets/WidgetsAtlas@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/UI/MainMenu/Widgets/WidgetsAtlas@2x.png -------------------------------------------------------------------------------- /Assets/Resources/UI/MainMenu/Widgets/WidgetsAtlas@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Resources/UI/MainMenu/Widgets/WidgetsAtlas@4x.png -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_02.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_02.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_03.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_03.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_04.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_04.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_05.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_05.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_06.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_06.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_07.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_07.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_08.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_08.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_09.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_09.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_10.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_10.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_11.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_11.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_12.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_12.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_13.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_13.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_14 (After Project Submission).unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_14 (After Project Submission).unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_15.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_15.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_16.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_16.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_17.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_17.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_18.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_18.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_19.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_19.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_20.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_20.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_21.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_21.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_22.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_22.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/Game_23.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/Game_23.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game/SteeringTest.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game/SteeringTest.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game_Fix/Game_Fix_01.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Game_Fix/Game_Fix_01.unity -------------------------------------------------------------------------------- /Assets/Scenes/Test/IntensityTest_01.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Test/IntensityTest_01.unity -------------------------------------------------------------------------------- /Assets/Scenes/Test/IntensityTest_02.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Test/IntensityTest_02.unity -------------------------------------------------------------------------------- /Assets/Scenes/Test/IntensityTest_03.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Test/IntensityTest_03.unity -------------------------------------------------------------------------------- /Assets/Scenes/Test/IntensityTest_04.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Test/IntensityTest_04.unity -------------------------------------------------------------------------------- /Assets/Scenes/Test/IntensityTest_05.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Test/IntensityTest_05.unity -------------------------------------------------------------------------------- /Assets/Scenes/Test/IntensityTest_06.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Test/IntensityTest_06.unity -------------------------------------------------------------------------------- /Assets/Scenes/Test/IntensityTest_07.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Test/IntensityTest_07.unity -------------------------------------------------------------------------------- /Assets/Scenes/Test/IntensityTest_08.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Test/IntensityTest_08.unity -------------------------------------------------------------------------------- /Assets/Scenes/Test/IntensityTest_09.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Test/IntensityTest_09.unity -------------------------------------------------------------------------------- /Assets/Scenes/Test/IntensityTest_10.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Test/IntensityTest_10.unity -------------------------------------------------------------------------------- /Assets/Scenes/Test/IntensityTest_11.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Test/IntensityTest_11.unity -------------------------------------------------------------------------------- /Assets/Scenes/Test/LevelOverhead_01.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Test/LevelOverhead_01.unity -------------------------------------------------------------------------------- /Assets/Scenes/Test/SteeringTest_01.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/Test/SteeringTest_01.unity -------------------------------------------------------------------------------- /Assets/Scenes/UI/Init.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/UI/Init.unity -------------------------------------------------------------------------------- /Assets/Scenes/UI/MainMenu.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scenes/UI/MainMenu.unity -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/AIDirector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/AIDirector.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/AISettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/AISettings.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/AISpawner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/AISpawner.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/AnxietyMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/AnxietyMonitor.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/CanAttack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/CanAttack.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/CircleTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/CircleTarget.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/DistanceToTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/DistanceToTransform.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/EnemyAISettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/EnemyAISettings.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/EnemyMob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/EnemyMob.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/EpochSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/EpochSettings.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/FaceTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/FaceTarget.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/HasEnteredTrigger2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/HasEnteredTrigger2D.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/IsBusy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/IsBusy.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/MoveTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/MoveTo.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/ObstacleDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/ObstacleDetector.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/PerformMove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/PerformMove.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/PlayerCombatAutomation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/PlayerCombatAutomation.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/PlayerWalkAutomation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/PlayerWalkAutomation.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/SelectCombatMove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/SelectCombatMove.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/Steer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/Steer.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/AI/StopAttacking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/AI/StopAttacking.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Action/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Action/Action.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Action/ActionScriptableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Action/ActionScriptableObject.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Action/ActionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Action/ActionSet.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Action/BasicActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Action/BasicActions.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Action/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Action/Event.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Action/Force.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Action/Force.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Action/HitBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Action/HitBox.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Action/HitBoxObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Action/HitBoxObject.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/Character.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/Character.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/CharacterAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/CharacterAI.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/CharacterAnchor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/CharacterAnchor.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/CharacterAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/CharacterAnimator.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/CharacterCollider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/CharacterCollider.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/CharacterControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/CharacterControl.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/CharacterForces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/CharacterForces.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/CharacterMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/CharacterMovement.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/CharacterStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/CharacterStats.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/CharacterTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/CharacterTarget.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/EnemyAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/EnemyAI.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/EnemyStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/EnemyStats.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/IMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/IMovement.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/MoveToTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/MoveToTarget.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/Neighbourhood.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/Neighbourhood.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/PlayerAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/PlayerAnimator.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/PlayerConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/PlayerConstants.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/RegeneratingHealth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/RegeneratingHealth.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/SkeletonFlasher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/SkeletonFlasher.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Character/Steerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Character/Steerable.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Input/CombatTouchProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Input/CombatTouchProcessor.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Input/ITouchProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Input/ITouchProcessor.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Input/InputManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Input/InputManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Input/TouchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Input/TouchInfo.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Input/TouchRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Input/TouchRegion.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Level/Cell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Level/Cell.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Level/GridNavigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Level/GridNavigator.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Level/Level.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Level/Level.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Level/LevelCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Level/LevelCell.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Managers/GameCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Managers/GameCamera.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Managers/GameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Managers/GameManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Managers/ParticleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Managers/ParticleManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Managers/SoundManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Managers/SoundManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Managers/TimeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Managers/TimeManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Props/OnCollision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Props/OnCollision.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Props/ShakePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Props/ShakePosition.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Props/ShakeRotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Props/ShakeRotation.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Props/Util_Easing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Props/Util_Easing.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Props/Util_Noise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Props/Util_Noise.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Sprites/SkeletonEffects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Sprites/SkeletonEffects.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Sprites/SkeletonFlash.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Sprites/SkeletonFlash.shader -------------------------------------------------------------------------------- /Assets/Scripts/Game/Sprites/SkeletonGhost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Sprites/SkeletonGhost.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Sprites/SkeletonGhostFlasher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Sprites/SkeletonGhostFlasher.cs -------------------------------------------------------------------------------- /Assets/Scripts/Game/Sprites/SpriteDepth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Game/Sprites/SpriteDepth.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/ApplicationInitializer.CS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/UI/ApplicationInitializer.CS -------------------------------------------------------------------------------- /Assets/Scripts/UI/DamageLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/UI/DamageLabel.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/HudManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/UI/HudManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/MainMenuManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/UI/MainMenuManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/PlayerAnxietySlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/UI/PlayerAnxietySlider.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/PlayerHealthSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/UI/PlayerHealthSlider.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/SliderText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/UI/SliderText.cs -------------------------------------------------------------------------------- /Assets/Scripts/UI/WorldToCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/UI/WorldToCanvas.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/ArrayUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Utils/ArrayUtils.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/DebugTimeScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Utils/DebugTimeScale.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/Extensions/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Utils/Extensions/DictionaryExtensions.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/Extensions/VectorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Utils/Extensions/VectorExtensions.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/GameObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Utils/GameObjectPool.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/LayerUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Utils/LayerUtils.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/ParticleEffectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Utils/ParticleEffectPool.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/Pool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Utils/Pool.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Utils/Range.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/Testing/IntensityUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Utils/Testing/IntensityUnitTest.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/Testing/SteeringUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Utils/Testing/SteeringUnitTest.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/Testing/WriteIntensityToFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Utils/Testing/WriteIntensityToFile.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/TweenTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Utils/TweenTest.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/Tweener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Utils/Tweener.cs -------------------------------------------------------------------------------- /Assets/Scripts/Utils/UIUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/Scripts/Utils/UIUtils.cs -------------------------------------------------------------------------------- /Assets/UI/Animations/UI/Button.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/Assets/UI/Animations/UI/Button.controller -------------------------------------------------------------------------------- /Builds/builds.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityAnalyticsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/ProjectSettings/UnityAnalyticsManager.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnny-la/pacing-fighter/HEAD/README.md --------------------------------------------------------------------------------