├── .gitignore ├── Assets ├── Fonts │ └── Pixeltype.ttf ├── JsonDotNet │ ├── Assemblies │ │ ├── AOT │ │ │ ├── Newtonsoft.Json.XML │ │ │ └── Newtonsoft.Json.dll │ │ ├── Standalone │ │ │ ├── Newtonsoft.Json.XML │ │ │ └── Newtonsoft.Json.dll │ │ └── Windows │ │ │ ├── Newtonsoft.Json.XML │ │ │ └── Newtonsoft.Json.dll │ ├── Documentation │ │ └── Json Net for Unity 2.0.1.pdf │ ├── JsonDotNet201Source.zip │ └── link.xml ├── Materials │ └── bounce.physicsMaterial2D ├── Prefabs │ ├── BlockDestroyParticleSystem.prefab │ ├── Blocks │ │ ├── BlockCircle.prefab │ │ ├── BlockRhombus.prefab │ │ ├── BlockSquare.prefab │ │ ├── BlockSquareLava.prefab │ │ ├── BlockSquareWater.prefab │ │ ├── BlockTriangle_0.prefab │ │ ├── BlockTriangle_180.prefab │ │ ├── BlockTriangle_270.prefab │ │ └── BlockTriangle_90.prefab │ ├── FireworkParticleSystem.prefab │ ├── ball.prefab │ └── pickup.prefab ├── Scenes │ ├── GameModeSelectionScene.unity │ ├── gameOverScene.unity │ ├── gameScene.unity │ ├── instructionsScene.unity │ ├── menuScene.unity │ └── pickupsScene.unity ├── Scripts │ ├── BallController.cs │ ├── BlockController.cs │ ├── ButtonController.cs │ ├── GameManager.cs │ ├── GameModeSelectionController.cs │ ├── GameOverController.cs │ ├── MainManager.cs │ ├── MainMenuController.cs │ ├── MouseAreaController.cs │ ├── PickupController.cs │ └── ProbabilityPicker.cs ├── Sounds │ ├── hit.wav │ ├── level_checkpoint.wav │ └── pickup.wav ├── Sprites │ ├── 2x-speed_pickup.png │ ├── 2x_pickup.png │ ├── background.png │ ├── ball.png │ ├── block_circle.png │ ├── block_rhombus.png │ ├── block_square.png │ ├── block_triangle.png │ ├── border.png │ ├── classic_mode.png │ ├── clear-map-100_pickup.png │ ├── clear-map-15_pickup.png │ ├── clear-map-50_pickup.png │ ├── clear-map-n.png │ ├── halve-blocks_pickup.png │ ├── heart.png │ ├── heart_pickup.png │ ├── inst1.png │ ├── inst2.png │ ├── lava.png │ ├── menuImg.png │ ├── modern_extra_mode.png │ ├── modern_hardcore_mode.png │ ├── modern_mode.png │ ├── mouseArea.png │ ├── no-spawn_pickup.png │ ├── plus-n.png │ ├── plus-one_pickup.png │ ├── plus-three_pickup.png │ ├── plus-two_pickup.png │ ├── save.png │ ├── soundOff.png │ ├── soundOn.png │ └── water.png └── WebGLTemplates │ └── BetterMinimal │ ├── index.html │ └── thumbnail.png ├── 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 ├── README.md ├── ReadmeFiles ├── demo.gif ├── pickups.png └── title.png └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Fonts/Pixeltype.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Fonts/Pixeltype.ttf -------------------------------------------------------------------------------- /Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.XML -------------------------------------------------------------------------------- /Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/JsonDotNet/Assemblies/AOT/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.XML -------------------------------------------------------------------------------- /Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/JsonDotNet/Assemblies/Standalone/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.XML -------------------------------------------------------------------------------- /Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/JsonDotNet/Assemblies/Windows/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Assets/JsonDotNet/Documentation/Json Net for Unity 2.0.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/JsonDotNet/Documentation/Json Net for Unity 2.0.1.pdf -------------------------------------------------------------------------------- /Assets/JsonDotNet/JsonDotNet201Source.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/JsonDotNet/JsonDotNet201Source.zip -------------------------------------------------------------------------------- /Assets/JsonDotNet/link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/JsonDotNet/link.xml -------------------------------------------------------------------------------- /Assets/Materials/bounce.physicsMaterial2D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Materials/bounce.physicsMaterial2D -------------------------------------------------------------------------------- /Assets/Prefabs/BlockDestroyParticleSystem.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Prefabs/BlockDestroyParticleSystem.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Blocks/BlockCircle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Prefabs/Blocks/BlockCircle.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Blocks/BlockRhombus.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Prefabs/Blocks/BlockRhombus.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Blocks/BlockSquare.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Prefabs/Blocks/BlockSquare.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Blocks/BlockSquareLava.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Prefabs/Blocks/BlockSquareLava.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Blocks/BlockSquareWater.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Prefabs/Blocks/BlockSquareWater.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Blocks/BlockTriangle_0.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Prefabs/Blocks/BlockTriangle_0.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Blocks/BlockTriangle_180.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Prefabs/Blocks/BlockTriangle_180.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Blocks/BlockTriangle_270.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Prefabs/Blocks/BlockTriangle_270.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Blocks/BlockTriangle_90.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Prefabs/Blocks/BlockTriangle_90.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/FireworkParticleSystem.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Prefabs/FireworkParticleSystem.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/ball.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Prefabs/ball.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/pickup.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Prefabs/pickup.prefab -------------------------------------------------------------------------------- /Assets/Scenes/GameModeSelectionScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Scenes/GameModeSelectionScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/gameOverScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Scenes/gameOverScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/gameScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Scenes/gameScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/instructionsScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Scenes/instructionsScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/menuScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Scenes/menuScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/pickupsScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Scenes/pickupsScene.unity -------------------------------------------------------------------------------- /Assets/Scripts/BallController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Scripts/BallController.cs -------------------------------------------------------------------------------- /Assets/Scripts/BlockController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Scripts/BlockController.cs -------------------------------------------------------------------------------- /Assets/Scripts/ButtonController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Scripts/ButtonController.cs -------------------------------------------------------------------------------- /Assets/Scripts/GameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Scripts/GameManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/GameModeSelectionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Scripts/GameModeSelectionController.cs -------------------------------------------------------------------------------- /Assets/Scripts/GameOverController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Scripts/GameOverController.cs -------------------------------------------------------------------------------- /Assets/Scripts/MainManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Scripts/MainManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/MainMenuController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Scripts/MainMenuController.cs -------------------------------------------------------------------------------- /Assets/Scripts/MouseAreaController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Scripts/MouseAreaController.cs -------------------------------------------------------------------------------- /Assets/Scripts/PickupController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Scripts/PickupController.cs -------------------------------------------------------------------------------- /Assets/Scripts/ProbabilityPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Scripts/ProbabilityPicker.cs -------------------------------------------------------------------------------- /Assets/Sounds/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sounds/hit.wav -------------------------------------------------------------------------------- /Assets/Sounds/level_checkpoint.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sounds/level_checkpoint.wav -------------------------------------------------------------------------------- /Assets/Sounds/pickup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sounds/pickup.wav -------------------------------------------------------------------------------- /Assets/Sprites/2x-speed_pickup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/2x-speed_pickup.png -------------------------------------------------------------------------------- /Assets/Sprites/2x_pickup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/2x_pickup.png -------------------------------------------------------------------------------- /Assets/Sprites/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/background.png -------------------------------------------------------------------------------- /Assets/Sprites/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/ball.png -------------------------------------------------------------------------------- /Assets/Sprites/block_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/block_circle.png -------------------------------------------------------------------------------- /Assets/Sprites/block_rhombus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/block_rhombus.png -------------------------------------------------------------------------------- /Assets/Sprites/block_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/block_square.png -------------------------------------------------------------------------------- /Assets/Sprites/block_triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/block_triangle.png -------------------------------------------------------------------------------- /Assets/Sprites/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/border.png -------------------------------------------------------------------------------- /Assets/Sprites/classic_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/classic_mode.png -------------------------------------------------------------------------------- /Assets/Sprites/clear-map-100_pickup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/clear-map-100_pickup.png -------------------------------------------------------------------------------- /Assets/Sprites/clear-map-15_pickup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/clear-map-15_pickup.png -------------------------------------------------------------------------------- /Assets/Sprites/clear-map-50_pickup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/clear-map-50_pickup.png -------------------------------------------------------------------------------- /Assets/Sprites/clear-map-n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/clear-map-n.png -------------------------------------------------------------------------------- /Assets/Sprites/halve-blocks_pickup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/halve-blocks_pickup.png -------------------------------------------------------------------------------- /Assets/Sprites/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/heart.png -------------------------------------------------------------------------------- /Assets/Sprites/heart_pickup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/heart_pickup.png -------------------------------------------------------------------------------- /Assets/Sprites/inst1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/inst1.png -------------------------------------------------------------------------------- /Assets/Sprites/inst2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/inst2.png -------------------------------------------------------------------------------- /Assets/Sprites/lava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/lava.png -------------------------------------------------------------------------------- /Assets/Sprites/menuImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/menuImg.png -------------------------------------------------------------------------------- /Assets/Sprites/modern_extra_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/modern_extra_mode.png -------------------------------------------------------------------------------- /Assets/Sprites/modern_hardcore_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/modern_hardcore_mode.png -------------------------------------------------------------------------------- /Assets/Sprites/modern_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/modern_mode.png -------------------------------------------------------------------------------- /Assets/Sprites/mouseArea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/mouseArea.png -------------------------------------------------------------------------------- /Assets/Sprites/no-spawn_pickup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/no-spawn_pickup.png -------------------------------------------------------------------------------- /Assets/Sprites/plus-n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/plus-n.png -------------------------------------------------------------------------------- /Assets/Sprites/plus-one_pickup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/plus-one_pickup.png -------------------------------------------------------------------------------- /Assets/Sprites/plus-three_pickup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/plus-three_pickup.png -------------------------------------------------------------------------------- /Assets/Sprites/plus-two_pickup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/plus-two_pickup.png -------------------------------------------------------------------------------- /Assets/Sprites/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/save.png -------------------------------------------------------------------------------- /Assets/Sprites/soundOff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/soundOff.png -------------------------------------------------------------------------------- /Assets/Sprites/soundOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/soundOn.png -------------------------------------------------------------------------------- /Assets/Sprites/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/Sprites/water.png -------------------------------------------------------------------------------- /Assets/WebGLTemplates/BetterMinimal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/WebGLTemplates/BetterMinimal/index.html -------------------------------------------------------------------------------- /Assets/WebGLTemplates/BetterMinimal/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/Assets/WebGLTemplates/BetterMinimal/thumbnail.png -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/README.md -------------------------------------------------------------------------------- /ReadmeFiles/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ReadmeFiles/demo.gif -------------------------------------------------------------------------------- /ReadmeFiles/pickups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ReadmeFiles/pickups.png -------------------------------------------------------------------------------- /ReadmeFiles/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/ReadmeFiles/title.png -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nuno-faria/blockbreaker/HEAD/packages.config --------------------------------------------------------------------------------