├── .gitattributes ├── .gitignore ├── Game-Blocket ├── .collabignore ├── .editorconfig ├── .vsconfig ├── Assets │ ├── Animations.meta │ ├── Animations │ │ ├── Blocks.meta │ │ ├── Blocks │ │ │ ├── Default.anim │ │ │ ├── Default.anim.meta │ │ │ ├── Grass.meta │ │ │ ├── Grass │ │ │ │ ├── grass-animation 1.png │ │ │ │ ├── grass-animation 1.png.meta │ │ │ │ ├── grass-animation 1_0.controller │ │ │ │ ├── grass-animation 1_0.controller.meta │ │ │ │ ├── grass-animation.anim │ │ │ │ └── grass-animation.anim.meta │ │ │ ├── Hit.anim │ │ │ ├── Hit.anim.meta │ │ │ ├── ItemAnimations.controller │ │ │ └── ItemAnimations.controller.meta │ │ ├── Enemy.meta │ │ ├── Enemy │ │ │ ├── Zombie.meta │ │ │ └── Zombie │ │ │ │ ├── ZombieSprite.controller │ │ │ │ ├── ZombieSprite.controller.meta │ │ │ │ ├── Zombie_normalAttack.anim │ │ │ │ ├── Zombie_normalAttack.anim.meta │ │ │ │ ├── Zombie_punch.psb │ │ │ │ ├── Zombie_punch.psb.meta │ │ │ │ ├── Zombie_walk.psb │ │ │ │ ├── Zombie_walk.psb.meta │ │ │ │ ├── Zombie_walking.anim │ │ │ │ └── Zombie_walking.anim.meta │ │ ├── Player.meta │ │ ├── Player │ │ │ ├── PlayerModel.controller │ │ │ ├── PlayerModel.controller.meta │ │ │ ├── Player_Crawl_Move.anim │ │ │ ├── Player_Crawl_Move.anim.meta │ │ │ ├── Player_Idle.anim │ │ │ ├── Player_Idle.anim.meta │ │ │ ├── Player_Jumping.anim │ │ │ ├── Player_Jumping.anim.meta │ │ │ ├── Player_Jumping_End.anim │ │ │ ├── Player_Jumping_End.anim.meta │ │ │ ├── Player_Running.anim │ │ │ └── Player_Running.anim.meta │ │ ├── PlayerModel.controller │ │ ├── PlayerModel.controller.meta │ │ ├── Player_Crawl_Move.anim │ │ ├── Player_Crawl_Move.anim.meta │ │ ├── Player_Idle.anim │ │ ├── Player_Idle.anim.meta │ │ ├── Player_Jumping.anim │ │ ├── Player_Jumping.anim.meta │ │ ├── Player_Jumping_End.anim │ │ ├── Player_Jumping_End.anim.meta │ │ ├── Player_Running.anim │ │ └── Player_Running.anim.meta │ ├── Global Volume Profile.asset │ ├── Global Volume Profile.asset.meta │ ├── Lighting_Settings.lighting │ ├── Lighting_Settings.lighting.meta │ ├── Palette.meta │ ├── Palette │ │ ├── TilePalette.prefab │ │ └── TilePalette.prefab.meta │ ├── Physics.meta │ ├── Physics │ │ ├── Player-Physics.physicsMaterial2D │ │ └── Player-Physics.physicsMaterial2D.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── Assets.prefab │ │ ├── Assets.prefab.meta │ │ ├── Bioms.meta │ │ ├── Bioms │ │ │ ├── Desert.asset │ │ │ ├── Desert.asset.meta │ │ │ ├── Plains.asset │ │ │ ├── Plains.asset.meta │ │ │ ├── Snow.asset │ │ │ └── Snow.asset.meta │ │ ├── Camera.prefab │ │ ├── Camera.prefab.meta │ │ ├── Enemies.meta │ │ ├── Enemies │ │ │ ├── Zombie.asset │ │ │ ├── Zombie.asset.meta │ │ │ ├── Zombie.prefab │ │ │ ├── Zombie.prefab.meta │ │ │ ├── ZombieSprite.prefab │ │ │ └── ZombieSprite.prefab.meta │ │ ├── Mob.prefab │ │ ├── Mob.prefab.meta │ │ ├── Player.prefab │ │ ├── Player.prefab.meta │ │ ├── Recipes.meta │ │ ├── Recipes │ │ │ ├── Stone.asset │ │ │ ├── Stone.asset.meta │ │ │ ├── Wooden Sword.asset │ │ │ ├── Wooden Sword.asset.meta │ │ │ ├── craftingTable.asset │ │ │ └── craftingTable.asset.meta │ │ ├── UI.meta │ │ ├── UI │ │ │ ├── .prefab │ │ │ ├── ConsoleEntry.prefab │ │ │ ├── ConsoleEntry.prefab.meta │ │ │ ├── Crafting.meta │ │ │ ├── InvSlot.prefab │ │ │ ├── InvSlot.prefab.meta │ │ │ ├── ListContent 1.prefab │ │ │ ├── ListContent 1.prefab.meta │ │ │ ├── ListContent.prefab │ │ │ ├── ListContent.prefab.meta │ │ │ ├── LoadingScreen.prefab │ │ │ ├── LoadingScreen.prefab.meta │ │ │ ├── LobbyClient.prefab │ │ │ ├── LobbyClient.prefab.meta │ │ │ ├── SettingsCanvas.prefab │ │ │ ├── SettingsCanvas.prefab.meta │ │ │ ├── SlotOptions.prefab │ │ │ ├── SlotOptions.prefab.meta │ │ │ ├── UIMainGame.prefab │ │ │ ├── UIMainGame.prefab.meta │ │ │ ├── UIProfileSite.prefab │ │ │ └── UIProfileSite.prefab.meta │ │ ├── World.prefab │ │ └── World.prefab.meta │ ├── Render.meta │ ├── Render │ │ ├── Lighting_Settings.lighting │ │ ├── Lighting_Settings.lighting.meta │ │ ├── PPP.asset │ │ ├── PPP.asset.meta │ │ ├── Renderer.asset │ │ ├── Renderer.asset.meta │ │ ├── UniversalRenderPipelineAsset 1.asset │ │ └── UniversalRenderPipelineAsset 1.asset.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── Dungeon.unity │ │ ├── Dungeon.unity.meta │ │ ├── Lobby.unity │ │ ├── Lobby.unity.meta │ │ ├── MainGame.unity │ │ ├── MainGame.unity.meta │ │ ├── MainMenu.unity │ │ └── MainMenu.unity.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── Camera.meta │ │ ├── Camera │ │ │ ├── FluentCameraBehaviour.cs │ │ │ ├── FluentCameraBehaviour.cs.meta │ │ │ ├── LOL.prefab │ │ │ ├── LOL.prefab.meta │ │ │ ├── MoveBackgroundWithPlayer.cs │ │ │ ├── MoveBackgroundWithPlayer.cs.meta │ │ │ ├── SmoothCamera.cs │ │ │ └── SmoothCamera.cs.meta │ │ ├── DataStorage.meta │ │ ├── DataStorage │ │ │ ├── AssetIO.cs │ │ │ ├── AssetIO.cs.meta │ │ │ ├── AssetIOEditor.cs │ │ │ ├── AssetIOEditor.cs.meta │ │ │ ├── PlayerProfile.cs │ │ │ ├── PlayerProfile.cs.meta │ │ │ ├── PrefabAssets.cs │ │ │ ├── PrefabAssets.cs.meta │ │ │ ├── Profile.cs │ │ │ ├── Profile.cs.meta │ │ │ ├── ProfileHandler.cs │ │ │ ├── ProfileHandler.cs.meta │ │ │ ├── WorldProfile.cs │ │ │ └── WorldProfile.cs.meta │ │ ├── Dungeon.meta │ │ ├── Dungeon │ │ │ ├── DungeonGenerator.cs │ │ │ ├── DungeonGenerator.cs.meta │ │ │ ├── ProceduralGenerationAlgorithms.cs │ │ │ ├── ProceduralGenerationAlgorithms.cs.meta │ │ │ ├── RandomDungeonGeneratorEditor.cs │ │ │ ├── RandomDungeonGeneratorEditor.cs.meta │ │ │ ├── Scriptabel Objects.meta │ │ │ ├── Scriptabel Objects │ │ │ │ ├── Dungeon Test.asset │ │ │ │ ├── Dungeon Test.asset.meta │ │ │ │ ├── DungeonSO.cs │ │ │ │ └── DungeonSO.cs.meta │ │ │ ├── TilemapVisualizer.cs │ │ │ ├── TilemapVisualizer.cs.meta │ │ │ ├── WallGenerator.cs │ │ │ └── WallGenerator.cs.meta │ │ ├── Entities.meta │ │ ├── Entities │ │ │ ├── BlockEntities.meta │ │ │ ├── Entity.cs │ │ │ ├── Entity.cs.meta │ │ │ ├── MobEntities.meta │ │ │ └── MobEntities │ │ │ │ ├── Enemies.meta │ │ │ │ ├── Enemies │ │ │ │ ├── EnemieSpawner.cs │ │ │ │ ├── EnemieSpawner.cs.meta │ │ │ │ ├── EnemySO.cs │ │ │ │ ├── EnemySO.cs.meta │ │ │ │ ├── FlyingEnemyBehaviour.cs │ │ │ │ ├── FlyingEnemyBehaviour.cs.meta │ │ │ │ ├── SkeletonLogic.cs │ │ │ │ ├── SkeletonLogic.cs.meta │ │ │ │ ├── ZombieBrain.cs │ │ │ │ └── ZombieBrain.cs.meta │ │ │ │ ├── Mob.cs │ │ │ │ ├── Mob.cs.meta │ │ │ │ ├── MobAssets.cs │ │ │ │ ├── MobAssets.cs.meta │ │ │ │ ├── MobHandler.cs │ │ │ │ └── MobHandler.cs.meta │ │ ├── GameListener.cs │ │ ├── GameListener.cs.meta │ │ ├── ItemHandling.meta │ │ ├── ItemHandling │ │ │ ├── Crafting.meta │ │ │ ├── Crafting │ │ │ │ ├── CraftingHandler.cs │ │ │ │ ├── CraftingHandler.cs.meta │ │ │ │ ├── CraftingRecipe.cs │ │ │ │ ├── CraftingRecipe.cs.meta │ │ │ │ ├── CraftingStation.cs │ │ │ │ └── CraftingStation.cs.meta │ │ │ ├── Item.cs │ │ │ ├── Item.cs.meta │ │ │ ├── ItemAssets.cs │ │ │ └── ItemAssets.cs.meta │ │ ├── Light.meta │ │ ├── Light │ │ │ ├── ClockHandler.cs │ │ │ ├── ClockHandler.cs.meta │ │ │ ├── DayNightCycle.cs │ │ │ ├── DayNightCycle.cs.meta │ │ │ ├── LightScript.cs │ │ │ └── LightScript.cs.meta │ │ ├── Management.meta │ │ ├── Management │ │ │ ├── Console.meta │ │ │ ├── Console │ │ │ │ ├── ConsoleEntry.cs │ │ │ │ ├── ConsoleEntry.cs.meta │ │ │ │ ├── Consolehandler.cs │ │ │ │ └── Consolehandler.cs.meta │ │ │ ├── DebugVariables.cs │ │ │ ├── DebugVariables.cs.meta │ │ │ ├── GameManager.cs │ │ │ ├── GameManager.cs.meta │ │ │ ├── GlobalVariables.cs │ │ │ ├── GlobalVariables.cs.meta │ │ │ ├── NetworkVariables.cs │ │ │ └── NetworkVariables.cs.meta │ │ ├── Player.meta │ │ ├── Player │ │ │ ├── Inventory.cs │ │ │ ├── Inventory.cs.meta │ │ │ ├── ItemFollowing.cs │ │ │ ├── ItemFollowing.cs.meta │ │ │ ├── Movement.cs │ │ │ ├── Movement.cs.meta │ │ │ ├── PlayerInteraction.cs │ │ │ ├── PlayerInteraction.cs.meta │ │ │ ├── PlayerVariables.cs │ │ │ └── PlayerVariables.cs.meta │ │ ├── Structure.meta │ │ ├── Structure │ │ │ ├── Structure.cs │ │ │ ├── Structure.cs.meta │ │ │ ├── StructureAssets.cs │ │ │ └── StructureAssets.cs.meta │ │ ├── Terrain.meta │ │ ├── Terrain │ │ │ ├── ClientTerrainHandler.cs │ │ │ ├── ClientTerrainHandler.cs.meta │ │ │ ├── Components.meta │ │ │ ├── Components │ │ │ │ ├── Biom.cs │ │ │ │ ├── Biom.cs.meta │ │ │ │ ├── Decoration.cs │ │ │ │ ├── Decoration.cs.meta │ │ │ │ ├── Drop.cs │ │ │ │ ├── Drop.cs.meta │ │ │ │ ├── NoiseGenerator.cs │ │ │ │ └── NoiseGenerator.cs.meta │ │ │ ├── ServerTerrainHandler.cs │ │ │ ├── ServerTerrainHandler.cs.meta │ │ │ ├── TerrainChunk.cs │ │ │ ├── TerrainChunk.cs.meta │ │ │ ├── TerrainGeneration.cs │ │ │ ├── TerrainGeneration.cs.meta │ │ │ ├── TerrainHandler.cs │ │ │ ├── TerrainHandler.cs.meta │ │ │ ├── WorldAssets.cs │ │ │ ├── WorldAssets.cs.meta │ │ │ ├── WorldData.cs │ │ │ └── WorldData.cs.meta │ │ ├── UI.meta │ │ └── UI │ │ │ ├── Lobby.meta │ │ │ ├── Lobby │ │ │ ├── ListContentUI.cs │ │ │ ├── ListContentUI.cs.meta │ │ │ ├── UILobby.cs │ │ │ ├── UILobby.cs.meta │ │ │ ├── UIProfileSite.cs │ │ │ └── UIProfileSite.cs.meta │ │ │ ├── MainGame.meta │ │ │ ├── MainGame │ │ │ ├── CraftingButtonRecognition.cs │ │ │ ├── CraftingButtonRecognition.cs.meta │ │ │ ├── PlayerEvents.cs │ │ │ ├── PlayerEvents.cs.meta │ │ │ ├── PlayerHealth.cs │ │ │ ├── PlayerHealth.cs.meta │ │ │ ├── RecipeRecommendationList.cs │ │ │ ├── RecipeRecommendationList.cs.meta │ │ │ ├── RecipeShowCase.cs │ │ │ ├── RecipeShowCase.cs.meta │ │ │ ├── ShowTimer.cs │ │ │ ├── ShowTimer.cs.meta │ │ │ ├── SlotOptionsScript.cs │ │ │ ├── SlotOptionsScript.cs.meta │ │ │ ├── UIInventory.cs │ │ │ ├── UIInventory.cs.meta │ │ │ ├── UIInventorySlot.cs │ │ │ └── UIInventorySlot.cs.meta │ │ │ ├── MainManu.meta │ │ │ ├── MainManu │ │ │ ├── UIMainMenu.cs │ │ │ └── UIMainMenu.cs.meta │ │ │ ├── MainMenu.meta │ │ │ ├── MainMenu │ │ │ ├── ChangeTextOnValueChange.cs │ │ │ ├── ChangeTextOnValueChange.cs.meta │ │ │ ├── PickRandomItem.cs │ │ │ ├── PickRandomItem.cs.meta │ │ │ ├── ScaleOnBtnHover.cs │ │ │ └── ScaleOnBtnHover.cs.meta │ │ │ ├── ScrollViewHandler.cs │ │ │ └── ScrollViewHandler.cs.meta │ ├── TextMesh Pro.meta │ ├── TextMesh Pro │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ │ ├── Examples & Extras.meta │ │ ├── Examples & Extras │ │ │ ├── Fonts.meta │ │ │ ├── Fonts │ │ │ │ ├── Anton OFL.txt │ │ │ │ ├── Anton OFL.txt.meta │ │ │ │ ├── Anton.ttf │ │ │ │ ├── Anton.ttf.meta │ │ │ │ ├── Bangers - OFL.txt │ │ │ │ ├── Bangers - OFL.txt.meta │ │ │ │ ├── Bangers.ttf │ │ │ │ ├── Bangers.ttf.meta │ │ │ │ ├── Electronic Highway Sign.TTF │ │ │ │ ├── Electronic Highway Sign.TTF.meta │ │ │ │ ├── Oswald-Bold - OFL.txt │ │ │ │ ├── Oswald-Bold - OFL.txt.meta │ │ │ │ ├── Oswald-Bold.ttf │ │ │ │ ├── Oswald-Bold.ttf.meta │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ └── Roboto-Bold.ttf.meta │ │ │ ├── Materials.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── Text Popup.prefab │ │ │ │ ├── Text Popup.prefab.meta │ │ │ │ ├── TextMeshPro - Prefab 1.prefab │ │ │ │ ├── TextMeshPro - Prefab 1.prefab.meta │ │ │ │ ├── TextMeshPro - Prefab 2.prefab │ │ │ │ └── TextMeshPro - Prefab 2.prefab.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── Color Gradient Presets.meta │ │ │ │ ├── Color Gradient Presets │ │ │ │ │ ├── Blue to Purple - Vertical.asset │ │ │ │ │ ├── Blue to Purple - Vertical.asset.meta │ │ │ │ │ ├── Dark to Light Green - Vertical.asset │ │ │ │ │ ├── Dark to Light Green - Vertical.asset.meta │ │ │ │ │ ├── Light to Dark Green - Vertical.asset │ │ │ │ │ ├── Light to Dark Green - Vertical.asset.meta │ │ │ │ │ ├── Yellow to Orange - Vertical.asset │ │ │ │ │ └── Yellow to Orange - Vertical.asset.meta │ │ │ │ ├── Fonts & Materials.meta │ │ │ │ ├── Fonts & Materials │ │ │ │ │ ├── Anton SDF.asset │ │ │ │ │ ├── Anton SDF.asset.meta │ │ │ │ │ ├── Bangers SDF.asset │ │ │ │ │ ├── Bangers SDF.asset.meta │ │ │ │ │ ├── Electronic Highway Sign SDF.asset │ │ │ │ │ ├── Electronic Highway Sign SDF.asset.meta │ │ │ │ │ ├── Oswald Bold SDF.asset │ │ │ │ │ ├── Oswald Bold SDF.asset.meta │ │ │ │ │ ├── Roboto-Bold SDF.asset │ │ │ │ │ └── Roboto-Bold SDF.asset.meta │ │ │ │ ├── Sprite Assets.meta │ │ │ │ └── Sprite Assets │ │ │ │ │ ├── Default Sprite Asset.asset │ │ │ │ │ ├── Default Sprite Asset.asset.meta │ │ │ │ │ ├── DropCap Numbers.asset │ │ │ │ │ └── DropCap Numbers.asset.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── 01- Single Line TextMesh Pro.unity │ │ │ │ ├── 01- Single Line TextMesh Pro.unity.meta │ │ │ │ ├── 02 - Multi-line TextMesh Pro.unity │ │ │ │ ├── 02 - Multi-line TextMesh Pro.unity.meta │ │ │ │ ├── 03 - Line Justification.unity │ │ │ │ ├── 03 - Line Justification.unity.meta │ │ │ │ ├── 04 - Word Wrapping.unity │ │ │ │ ├── 04 - Word Wrapping.unity.meta │ │ │ │ ├── 05 - Style Tags.unity │ │ │ │ ├── 05 - Style Tags.unity.meta │ │ │ │ ├── 06 - Extra Rich Text Examples.unity │ │ │ │ ├── 06 - Extra Rich Text Examples.unity.meta │ │ │ │ ├── 07 - Superscript & Subscript Example.unity │ │ │ │ ├── 07 - Superscript & Subscript Example.unity.meta │ │ │ │ ├── 08 - Improved Text Alignment.unity │ │ │ │ ├── 08 - Improved Text Alignment.unity.meta │ │ │ │ ├── 09 - Margin Tag Example.unity │ │ │ │ ├── 09 - Margin Tag Example.unity.meta │ │ │ │ ├── 10 - Bullets & Numbered List Example.unity │ │ │ │ ├── 10 - Bullets & Numbered List Example.unity.meta │ │ │ │ ├── 11 - The Style Tag.unity │ │ │ │ ├── 11 - The Style Tag.unity.meta │ │ │ │ ├── 12 - Link Example.unity │ │ │ │ ├── 12 - Link Example.unity.meta │ │ │ │ ├── 12a - Text Interactions.unity │ │ │ │ ├── 12a - Text Interactions.unity.meta │ │ │ │ ├── 13 - Soft Hyphenation.unity │ │ │ │ ├── 13 - Soft Hyphenation.unity.meta │ │ │ │ ├── 14 - Multi Font & Sprites.unity │ │ │ │ ├── 14 - Multi Font & Sprites.unity.meta │ │ │ │ ├── 15 - Inline Graphics & Sprites.unity │ │ │ │ ├── 15 - Inline Graphics & Sprites.unity.meta │ │ │ │ ├── 16 - Linked text overflow mode example.unity │ │ │ │ ├── 16 - Linked text overflow mode example.unity.meta │ │ │ │ ├── 17 - Old Computer Terminal.unity │ │ │ │ ├── 17 - Old Computer Terminal.unity.meta │ │ │ │ ├── 18 - ScrollRect & Masking & Layout.unity │ │ │ │ ├── 18 - ScrollRect & Masking & Layout.unity.meta │ │ │ │ ├── 19 - Masking Texture & Soft Mask.unity │ │ │ │ ├── 19 - Masking Texture & Soft Mask.unity.meta │ │ │ │ ├── 20 - Input Field with Scrollbar.unity │ │ │ │ ├── 20 - Input Field with Scrollbar.unity.meta │ │ │ │ ├── 21 - Script Example.unity │ │ │ │ ├── 21 - Script Example.unity.meta │ │ │ │ ├── 22 - Basic Scripting Example.unity │ │ │ │ ├── 22 - Basic Scripting Example.unity.meta │ │ │ │ ├── 23 - Animating Vertex Attributes.unity │ │ │ │ ├── 23 - Animating Vertex Attributes.unity.meta │ │ │ │ ├── 24 - Surface Shader Example.unity │ │ │ │ ├── 24 - Surface Shader Example.unity.meta │ │ │ │ ├── 25 - Sunny Days Example.unity │ │ │ │ ├── 25 - Sunny Days Example.unity.meta │ │ │ │ ├── 26 - Dropdown Placeholder Example.unity │ │ │ │ ├── 26 - Dropdown Placeholder Example.unity.meta │ │ │ │ ├── Benchmark (Floating Text).unity │ │ │ │ └── Benchmark (Floating Text).unity.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── Benchmark01.cs │ │ │ │ ├── Benchmark01.cs.meta │ │ │ │ ├── Benchmark01_UGUI.cs │ │ │ │ ├── Benchmark01_UGUI.cs.meta │ │ │ │ ├── Benchmark02.cs │ │ │ │ ├── Benchmark02.cs.meta │ │ │ │ ├── Benchmark03.cs │ │ │ │ ├── Benchmark03.cs.meta │ │ │ │ ├── Benchmark04.cs │ │ │ │ ├── Benchmark04.cs.meta │ │ │ │ ├── CameraController.cs │ │ │ │ ├── CameraController.cs.meta │ │ │ │ ├── ChatController.cs │ │ │ │ ├── ChatController.cs.meta │ │ │ │ ├── DropdownSample.cs │ │ │ │ ├── DropdownSample.cs.meta │ │ │ │ ├── EnvMapAnimator.cs │ │ │ │ ├── EnvMapAnimator.cs.meta │ │ │ │ ├── ObjectSpin.cs │ │ │ │ ├── ObjectSpin.cs.meta │ │ │ │ ├── ShaderPropAnimator.cs │ │ │ │ ├── ShaderPropAnimator.cs.meta │ │ │ │ ├── SimpleScript.cs │ │ │ │ ├── SimpleScript.cs.meta │ │ │ │ ├── SkewTextExample.cs │ │ │ │ ├── SkewTextExample.cs.meta │ │ │ │ ├── TMP_DigitValidator.cs │ │ │ │ ├── TMP_DigitValidator.cs.meta │ │ │ │ ├── TMP_ExampleScript_01.cs │ │ │ │ ├── TMP_ExampleScript_01.cs.meta │ │ │ │ ├── TMP_FrameRateCounter.cs │ │ │ │ ├── TMP_FrameRateCounter.cs.meta │ │ │ │ ├── TMP_PhoneNumberValidator.cs │ │ │ │ ├── TMP_PhoneNumberValidator.cs.meta │ │ │ │ ├── TMP_TextEventCheck.cs │ │ │ │ ├── TMP_TextEventCheck.cs.meta │ │ │ │ ├── TMP_TextEventHandler.cs │ │ │ │ ├── TMP_TextEventHandler.cs.meta │ │ │ │ ├── TMP_TextInfoDebugTool.cs │ │ │ │ ├── TMP_TextInfoDebugTool.cs.meta │ │ │ │ ├── TMP_TextSelector_A.cs │ │ │ │ ├── TMP_TextSelector_A.cs.meta │ │ │ │ ├── TMP_TextSelector_B.cs │ │ │ │ ├── TMP_TextSelector_B.cs.meta │ │ │ │ ├── TMP_UiFrameRateCounter.cs │ │ │ │ ├── TMP_UiFrameRateCounter.cs.meta │ │ │ │ ├── TMPro_InstructionOverlay.cs │ │ │ │ ├── TMPro_InstructionOverlay.cs.meta │ │ │ │ ├── TeleType.cs │ │ │ │ ├── TeleType.cs.meta │ │ │ │ ├── TextConsoleSimulator.cs │ │ │ │ ├── TextConsoleSimulator.cs.meta │ │ │ │ ├── TextMeshProFloatingText.cs │ │ │ │ ├── TextMeshProFloatingText.cs.meta │ │ │ │ ├── TextMeshSpawner.cs │ │ │ │ ├── TextMeshSpawner.cs.meta │ │ │ │ ├── VertexColorCycler.cs │ │ │ │ ├── VertexColorCycler.cs.meta │ │ │ │ ├── VertexJitter.cs │ │ │ │ ├── VertexJitter.cs.meta │ │ │ │ ├── VertexShakeA.cs │ │ │ │ ├── VertexShakeA.cs.meta │ │ │ │ ├── VertexShakeB.cs │ │ │ │ ├── VertexShakeB.cs.meta │ │ │ │ ├── VertexZoom.cs │ │ │ │ ├── VertexZoom.cs.meta │ │ │ │ ├── WarpTextExample.cs │ │ │ │ └── WarpTextExample.cs.meta │ │ │ ├── Sprites.meta │ │ │ ├── Sprites │ │ │ │ ├── Default Sprites.png │ │ │ │ ├── Default Sprites.png.meta │ │ │ │ ├── DropCap Numbers.psd │ │ │ │ └── DropCap Numbers.psd.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── Brushed Metal 3.jpg │ │ │ │ ├── Brushed Metal 3.jpg.meta │ │ │ │ ├── Floor Cement.jpg │ │ │ │ ├── Floor Cement.jpg.meta │ │ │ │ ├── Floor Tiles 1 - diffuse.jpg │ │ │ │ ├── Floor Tiles 1 - diffuse.jpg.meta │ │ │ │ ├── Fruit Jelly (B&W).jpg │ │ │ │ ├── Fruit Jelly (B&W).jpg.meta │ │ │ │ ├── Gradient Diagonal (Color).jpg │ │ │ │ ├── Gradient Diagonal (Color).jpg.meta │ │ │ │ ├── Gradient Horizontal (Color).jpg │ │ │ │ ├── Gradient Horizontal (Color).jpg.meta │ │ │ │ ├── Gradient Vertical (Color).jpg │ │ │ │ ├── Gradient Vertical (Color).jpg.meta │ │ │ │ ├── Mask Zig-n-Zag.psd │ │ │ │ ├── Mask Zig-n-Zag.psd.meta │ │ │ │ ├── Small Crate_diffuse.jpg │ │ │ │ ├── Small Crate_diffuse.jpg.meta │ │ │ │ ├── Small Crate_normal.jpg │ │ │ │ ├── Small Crate_normal.jpg.meta │ │ │ │ ├── Sunny Days - Seamless.jpg │ │ │ │ ├── Sunny Days - Seamless.jpg.meta │ │ │ │ ├── Text Overflow - Linked Text Image 1.png │ │ │ │ ├── Text Overflow - Linked Text Image 1.png.meta │ │ │ │ ├── Text Overflow - Linked Text UI Screenshot.png │ │ │ │ ├── Text Overflow - Linked Text UI Screenshot.png.meta │ │ │ │ ├── Wipe Pattern - Circle.psd │ │ │ │ ├── Wipe Pattern - Circle.psd.meta │ │ │ │ ├── Wipe Pattern - Diagonal.psd │ │ │ │ ├── Wipe Pattern - Diagonal.psd.meta │ │ │ │ ├── Wipe Pattern - Radial Double.psd │ │ │ │ ├── Wipe Pattern - Radial Double.psd.meta │ │ │ │ ├── Wipe Pattern - Radial Quad.psd │ │ │ │ └── Wipe Pattern - Radial Quad.psd.meta │ │ ├── Fonts.meta │ │ ├── Fonts │ │ │ ├── LiberationSans - OFL.txt │ │ │ ├── LiberationSans - OFL.txt.meta │ │ │ ├── LiberationSans.ttf │ │ │ └── LiberationSans.ttf.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── Fonts & Materials.meta │ │ │ ├── Fonts & Materials │ │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ │ ├── LiberationSans SDF.asset │ │ │ │ └── LiberationSans SDF.asset.meta │ │ │ ├── LineBreaking Following Characters.txt │ │ │ ├── LineBreaking Following Characters.txt.meta │ │ │ ├── LineBreaking Leading Characters.txt │ │ │ ├── LineBreaking Leading Characters.txt.meta │ │ │ ├── Sprite Assets.meta │ │ │ ├── Sprite Assets │ │ │ │ ├── EmojiOne.asset │ │ │ │ └── EmojiOne.asset.meta │ │ │ ├── Style Sheets.meta │ │ │ ├── Style Sheets │ │ │ │ ├── Default Style Sheet.asset │ │ │ │ └── Default Style Sheet.asset.meta │ │ │ ├── TMP Settings.asset │ │ │ └── TMP Settings.asset.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ │ ├── TMP_Bitmap-Mobile.shader │ │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ │ ├── TMP_Bitmap.shader │ │ │ ├── TMP_Bitmap.shader.meta │ │ │ ├── TMP_SDF Overlay.shader │ │ │ ├── TMP_SDF Overlay.shader.meta │ │ │ ├── TMP_SDF SSD.shader │ │ │ ├── TMP_SDF SSD.shader.meta │ │ │ ├── TMP_SDF-Mobile Masking.shader │ │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ │ ├── TMP_SDF-Mobile SSD.shader │ │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ │ ├── TMP_SDF-Mobile.shader │ │ │ ├── TMP_SDF-Mobile.shader.meta │ │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ │ ├── TMP_SDF-Surface.shader │ │ │ ├── TMP_SDF-Surface.shader.meta │ │ │ ├── TMP_SDF.shader │ │ │ ├── TMP_SDF.shader.meta │ │ │ ├── TMP_Sprite.shader │ │ │ ├── TMP_Sprite.shader.meta │ │ │ ├── TMPro.cginc │ │ │ ├── TMPro.cginc.meta │ │ │ ├── TMPro_Mobile.cginc │ │ │ ├── TMPro_Mobile.cginc.meta │ │ │ ├── TMPro_Properties.cginc │ │ │ ├── TMPro_Properties.cginc.meta │ │ │ ├── TMPro_Surface.cginc │ │ │ └── TMPro_Surface.cginc.meta │ │ ├── Sprites.meta │ │ └── Sprites │ │ │ ├── EmojiOne Attribution.txt │ │ │ ├── EmojiOne Attribution.txt.meta │ │ │ ├── EmojiOne.json │ │ │ ├── EmojiOne.json.meta │ │ │ ├── EmojiOne.png │ │ │ └── EmojiOne.png.meta │ ├── Textures.meta │ ├── Textures │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── Dirt.png │ │ │ ├── Dirt.png.meta │ │ │ ├── Player.physicsMaterial2D │ │ │ └── Player.physicsMaterial2D.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── PlayerModel.psb │ │ │ └── PlayerModel.psb.meta │ │ ├── Null.png │ │ ├── Null.png.meta │ │ ├── Render Texture Camera.renderTexture │ │ ├── Render Texture Camera.renderTexture.meta │ │ ├── Sprites.meta │ │ ├── Sprites │ │ │ ├── Blocks.meta │ │ │ ├── Blocks │ │ │ │ ├── Animation.meta │ │ │ │ ├── Animation │ │ │ │ │ ├── grass-animation 1.png │ │ │ │ │ ├── grass-animation 1.png.meta │ │ │ │ │ ├── grass-animation 1_0.controller │ │ │ │ │ ├── grass-animation 1_0.controller.meta │ │ │ │ │ ├── grass-animation.anim │ │ │ │ │ └── grass-animation.anim.meta │ │ │ │ ├── Bernstein.png │ │ │ │ ├── Bernstein.png.meta │ │ │ │ ├── Biome-Sprites.meta │ │ │ │ ├── Biome-Sprites │ │ │ │ │ ├── Animation.meta │ │ │ │ │ ├── Crack.png │ │ │ │ │ ├── Crack.png.meta │ │ │ │ │ ├── DIVS.meta │ │ │ │ │ ├── Grass.gif │ │ │ │ │ ├── Grass.gif.meta │ │ │ │ │ ├── Ores.meta │ │ │ │ │ ├── Ores │ │ │ │ │ │ ├── Bern.png │ │ │ │ │ │ ├── Bern.png.meta │ │ │ │ │ │ ├── Bernstein.png │ │ │ │ │ │ ├── Bernstein.png.meta │ │ │ │ │ │ ├── Opal.png │ │ │ │ │ │ ├── Opal.png.meta │ │ │ │ │ │ ├── Perl.png │ │ │ │ │ │ ├── Perl.png.meta │ │ │ │ │ │ ├── Raw_Opal.png │ │ │ │ │ │ └── Raw_Opal.png.meta │ │ │ │ │ ├── Terrain.meta │ │ │ │ │ ├── Terrain │ │ │ │ │ │ ├── Background.meta │ │ │ │ │ │ ├── Background │ │ │ │ │ │ │ ├── Dirt-Bg-Top.png │ │ │ │ │ │ │ ├── Dirt-Bg-Top.png.meta │ │ │ │ │ │ │ ├── Dirt-Bg.png │ │ │ │ │ │ │ ├── Dirt-Bg.png.meta │ │ │ │ │ │ │ ├── sand-topBG.png │ │ │ │ │ │ │ ├── sand-topBG.png.meta │ │ │ │ │ │ │ ├── sandBG.png │ │ │ │ │ │ │ └── sandBG.png.meta │ │ │ │ │ │ ├── Foreground.meta │ │ │ │ │ │ └── Foreground │ │ │ │ │ │ │ ├── Dirt-Top1 1.png │ │ │ │ │ │ │ ├── Dirt-Top1 1.png.meta │ │ │ │ │ │ │ ├── Sandstone.png │ │ │ │ │ │ │ ├── Sandstone.png.meta │ │ │ │ │ │ │ ├── Snow-Block-left.png │ │ │ │ │ │ │ ├── Snow-Block-left.png.meta │ │ │ │ │ │ │ ├── Snow-block.png │ │ │ │ │ │ │ ├── Snow-block.png.meta │ │ │ │ │ │ │ ├── Snow.png │ │ │ │ │ │ │ ├── Snow.png.meta │ │ │ │ │ │ │ ├── Stein.png │ │ │ │ │ │ │ ├── Stein.png.meta │ │ │ │ │ │ │ ├── sand-top.png │ │ │ │ │ │ │ ├── sand-top.png.meta │ │ │ │ │ │ │ ├── sand.png │ │ │ │ │ │ │ └── sand.png.meta │ │ │ │ │ ├── Visir 1.png │ │ │ │ │ └── Visir 1.png.meta │ │ │ │ ├── Crack.png │ │ │ │ ├── Crack.png.meta │ │ │ │ ├── DIVS.meta │ │ │ │ ├── DIVS │ │ │ │ │ ├── bdirt.png │ │ │ │ │ ├── bdirt.png.meta │ │ │ │ │ ├── bgrass.png │ │ │ │ │ ├── bgrass.png.meta │ │ │ │ │ ├── bsand.png │ │ │ │ │ ├── bsand.png.meta │ │ │ │ │ ├── bsnow.png │ │ │ │ │ ├── bsnow.png.meta │ │ │ │ │ ├── dirt.png │ │ │ │ │ ├── dirt.png.meta │ │ │ │ │ ├── grass.png │ │ │ │ │ ├── grass.png.meta │ │ │ │ │ ├── sand.png │ │ │ │ │ ├── sand.png.meta │ │ │ │ │ ├── snow.png │ │ │ │ │ └── snow.png.meta │ │ │ │ ├── Dirt-Bg-Top.png │ │ │ │ ├── Dirt-Bg-Top.png.meta │ │ │ │ ├── Dirt-Bg.png │ │ │ │ ├── Dirt-Bg.png.meta │ │ │ │ ├── Dirt-Top1 1.png │ │ │ │ ├── Dirt-Top1 1.png.meta │ │ │ │ ├── Grass.gif │ │ │ │ ├── Grass.gif.meta │ │ │ │ ├── Opal.png │ │ │ │ ├── Opal.png.meta │ │ │ │ ├── Perl.png │ │ │ │ ├── Perl.png.meta │ │ │ │ ├── Plant-sprites.meta │ │ │ │ ├── Sky-Brick-bg.png │ │ │ │ ├── Sky-Brick-bg.png.meta │ │ │ │ ├── Sky-Brick.png │ │ │ │ ├── Sky-Brick.png.meta │ │ │ │ ├── Snow-Block-left.png │ │ │ │ ├── Snow-Block-left.png.meta │ │ │ │ ├── Snow.png │ │ │ │ ├── Snow.png.meta │ │ │ │ ├── Visir 1.png │ │ │ │ ├── Visir 1.png.meta │ │ │ │ ├── Wolke_bottom-left.png │ │ │ │ ├── Wolke_bottom-left.png.meta │ │ │ │ ├── Wolke_bottom-right.png │ │ │ │ ├── Wolke_bottom-right.png.meta │ │ │ │ ├── Wolke_bottom.png │ │ │ │ ├── Wolke_bottom.png.meta │ │ │ │ ├── Wolke_middle-left.png │ │ │ │ ├── Wolke_middle-left.png.meta │ │ │ │ ├── Wolke_middle-middle.png │ │ │ │ ├── Wolke_middle-middle.png.meta │ │ │ │ ├── Wolke_middle-right.png │ │ │ │ ├── Wolke_middle-right.png.meta │ │ │ │ ├── Wolke_top-left.png │ │ │ │ ├── Wolke_top-left.png.meta │ │ │ │ ├── Wolke_top-middle.png │ │ │ │ ├── Wolke_top-middle.png.meta │ │ │ │ ├── Wolke_top-right.png │ │ │ │ ├── Wolke_top-right.png.meta │ │ │ │ ├── Wurzel 1.png │ │ │ │ ├── Wurzel 1.png.meta │ │ │ │ ├── Wurzel.png │ │ │ │ ├── Wurzel.png.meta │ │ │ │ ├── sand-top.png │ │ │ │ ├── sand-top.png.meta │ │ │ │ ├── sand-topBG.png │ │ │ │ ├── sand-topBG.png.meta │ │ │ │ ├── sandBG.png │ │ │ │ └── sandBG.png.meta │ │ │ ├── CraftingTables.meta │ │ │ ├── CraftingTables │ │ │ │ ├── Crafting station 1.png │ │ │ │ ├── Crafting station 1.png.meta │ │ │ │ ├── Crafting station.png │ │ │ │ └── Crafting station.png.meta │ │ │ ├── Dungeon.meta │ │ │ ├── Dungeon │ │ │ │ ├── Brick-Bg.png │ │ │ │ ├── Brick-Bg.png.meta │ │ │ │ ├── Brick.png │ │ │ │ ├── Brick.png.meta │ │ │ │ ├── door-bottom-1.png │ │ │ │ ├── door-bottom-1.png.meta │ │ │ │ ├── door-bottom.png │ │ │ │ ├── door-bottom.png.meta │ │ │ │ ├── door-middle-1.png │ │ │ │ ├── door-middle-1.png.meta │ │ │ │ ├── door-middle.png │ │ │ │ ├── door-middle.png.meta │ │ │ │ ├── door-top-1.png │ │ │ │ ├── door-top-1.png.meta │ │ │ │ ├── door-top.png │ │ │ │ └── door-top.png.meta │ │ │ ├── Entities.meta │ │ │ ├── Entities │ │ │ │ ├── Ghost2.png │ │ │ │ └── Ghost2.png.meta │ │ │ ├── Items.meta │ │ │ ├── Items │ │ │ │ ├── Accessory.meta │ │ │ │ ├── Armor.meta │ │ │ │ ├── Block.meta │ │ │ │ ├── Block │ │ │ │ │ ├── Nature.meta │ │ │ │ │ ├── Nature │ │ │ │ │ │ ├── Cactusblock.png │ │ │ │ │ │ ├── Cactusblock.png.meta │ │ │ │ │ │ ├── Flowerblock.png │ │ │ │ │ │ ├── Flowerblock.png.meta │ │ │ │ │ │ ├── Leafblock.png │ │ │ │ │ │ ├── Leafblock.png.meta │ │ │ │ │ │ ├── Palm-tree-leaf.png │ │ │ │ │ │ ├── Palm-tree-leaf.png.meta │ │ │ │ │ │ ├── Palm-tree.png │ │ │ │ │ │ ├── Palm-tree.png.meta │ │ │ │ │ │ ├── Trunkblock.png │ │ │ │ │ │ └── Trunkblock.png.meta │ │ │ │ │ ├── Terrain.meta │ │ │ │ │ └── Terrain │ │ │ │ │ │ ├── Dirtblock.png │ │ │ │ │ │ ├── Dirtblock.png.meta │ │ │ │ │ │ ├── Grassblock.png │ │ │ │ │ │ ├── Grassblock.png.meta │ │ │ │ │ │ ├── Meteoritblock.png │ │ │ │ │ │ ├── Meteoritblock.png.meta │ │ │ │ │ │ ├── Sandblock.png │ │ │ │ │ │ ├── Sandblock.png.meta │ │ │ │ │ │ ├── Snowblock.png │ │ │ │ │ │ ├── Snowblock.png.meta │ │ │ │ │ │ ├── Stoneblock.png │ │ │ │ │ │ └── Stoneblock.png.meta │ │ │ │ ├── Ores.meta │ │ │ │ ├── Ores │ │ │ │ │ ├── Bernstein.png │ │ │ │ │ ├── Bernstein.png.meta │ │ │ │ │ ├── Opal.png │ │ │ │ │ └── Opal.png.meta │ │ │ │ ├── Weapon-Sprites.meta │ │ │ │ ├── Weapon-Sprites │ │ │ │ │ └── Swords.meta │ │ │ │ ├── Weapon.meta │ │ │ │ └── Weapon │ │ │ │ │ ├── Magic sword.png │ │ │ │ │ ├── Magic sword.png.meta │ │ │ │ │ ├── Wooden-Sword.png │ │ │ │ │ └── Wooden-Sword.png.meta │ │ │ ├── Plants.meta │ │ │ ├── Plants │ │ │ │ ├── Tree.png │ │ │ │ ├── Tree.png.meta │ │ │ │ ├── blatt-ecke-rechts-oben.png │ │ │ │ ├── blatt-ecke-rechts-oben.png.meta │ │ │ │ ├── blatt-ecke-rechts-unten.png │ │ │ │ ├── blatt-ecke-rechts-unten.png.meta │ │ │ │ ├── blatt-links unten.png │ │ │ │ ├── blatt-links unten.png.meta │ │ │ │ ├── blatt-links-oben.png │ │ │ │ ├── blatt-links-oben.png.meta │ │ │ │ ├── blatt.png │ │ │ │ └── blatt.png.meta │ │ │ ├── Player.meta │ │ │ ├── Player │ │ │ │ ├── Celeste_Main_char.png │ │ │ │ ├── Celeste_Main_char.png.meta │ │ │ │ ├── Player.png │ │ │ │ ├── Player.png.meta │ │ │ │ ├── Steeve.png │ │ │ │ └── Steeve.png.meta │ │ │ ├── UI.meta │ │ │ └── UI │ │ │ │ ├── Cursor.meta │ │ │ │ ├── Cursor │ │ │ │ ├── InventoryCur.png │ │ │ │ ├── InventoryCur.png.meta │ │ │ │ ├── MiningCur.png │ │ │ │ ├── MiningCur.png.meta │ │ │ │ ├── SwordCur.png │ │ │ │ └── SwordCur.png.meta │ │ │ │ ├── Lobby.meta │ │ │ │ ├── Lobby │ │ │ │ ├── 59036c7d253c0.png │ │ │ │ ├── 59036c7d253c0.png.meta │ │ │ │ ├── Hill.png │ │ │ │ ├── Hill.png.meta │ │ │ │ ├── R.png │ │ │ │ ├── R.png.meta │ │ │ │ ├── RenameIcon.png │ │ │ │ ├── RenameIcon.png.meta │ │ │ │ ├── Trashcan.png │ │ │ │ └── Trashcan.png.meta │ │ │ │ ├── MainGame.meta │ │ │ │ └── MainGame │ │ │ │ ├── Background-Inv.png │ │ │ │ ├── Background-Inv.png.meta │ │ │ │ ├── Background.meta │ │ │ │ ├── Background │ │ │ │ ├── Mountain.png │ │ │ │ ├── Mountain.png.meta │ │ │ │ ├── Plains_Background1.png │ │ │ │ ├── Plains_Background1.png.meta │ │ │ │ ├── Sky.png │ │ │ │ ├── Sky.png.meta │ │ │ │ ├── plains.png │ │ │ │ └── plains.png.meta │ │ │ │ ├── Basic_Crafting_bg.png │ │ │ │ ├── Basic_Crafting_bg.png.meta │ │ │ │ ├── Card-BG.png │ │ │ │ ├── Card-BG.png.meta │ │ │ │ ├── Card.png │ │ │ │ ├── Card.png.meta │ │ │ │ ├── Crafting int.png │ │ │ │ ├── Crafting int.png.meta │ │ │ │ ├── Dark-Heart.png │ │ │ │ ├── Dark-Heart.png.meta │ │ │ │ ├── Hearts.meta │ │ │ │ ├── Hearts │ │ │ │ ├── Dark-Heart-half.png │ │ │ │ ├── Dark-Heart-half.png.meta │ │ │ │ ├── Heart_Lila.png │ │ │ │ ├── Heart_Lila.png.meta │ │ │ │ ├── half-Hearth-lila.png │ │ │ │ ├── half-Hearth-lila.png.meta │ │ │ │ ├── null-Hearth.png │ │ │ │ ├── null-Hearth.png.meta │ │ │ │ ├── null_middleHeart.png │ │ │ │ └── null_middleHeart.png.meta │ │ │ │ ├── Shield.png │ │ │ │ ├── Shield.png.meta │ │ │ │ ├── Slotpng.png │ │ │ │ ├── Slotpng.png.meta │ │ │ │ ├── Slotpng_First.png │ │ │ │ ├── Slotpng_First.png.meta │ │ │ │ ├── Sword.png │ │ │ │ ├── Sword.png.meta │ │ │ │ ├── bg hotbar.png │ │ │ │ └── bg hotbar.png.meta │ │ ├── Tiles.meta │ │ └── Tiles │ │ │ ├── CraftingStations.meta │ │ │ ├── CraftingStations │ │ │ ├── Crafting station 1.asset │ │ │ ├── Crafting station 1.asset.meta │ │ │ ├── Crafting station.asset │ │ │ └── Crafting station.asset.meta │ │ │ ├── DIVSnew.meta │ │ │ ├── DIVSnew │ │ │ ├── Tree.asset │ │ │ ├── Tree.asset.meta │ │ │ ├── bdirt.asset │ │ │ ├── bdirt.asset.meta │ │ │ ├── bgrass.asset │ │ │ ├── bgrass.asset.meta │ │ │ ├── bsand.asset │ │ │ ├── bsand.asset.meta │ │ │ ├── bsnow.asset │ │ │ ├── bsnow.asset.meta │ │ │ ├── dirt.asset │ │ │ ├── dirt.asset.meta │ │ │ ├── grass.asset │ │ │ ├── grass.asset.meta │ │ │ ├── sand.asset │ │ │ ├── sand.asset.meta │ │ │ ├── snow.asset │ │ │ └── snow.asset.meta │ │ │ ├── Dungeon.meta │ │ │ ├── Dungeon │ │ │ ├── Brick-Bg.asset │ │ │ ├── Brick-Bg.asset.meta │ │ │ ├── Brick.asset │ │ │ ├── Brick.asset.meta │ │ │ ├── door-bottom-1.asset │ │ │ ├── door-bottom-1.asset.meta │ │ │ ├── door-bottom.asset │ │ │ ├── door-bottom.asset.meta │ │ │ ├── door-middle-1.asset │ │ │ ├── door-middle-1.asset.meta │ │ │ ├── door-middle.asset │ │ │ ├── door-middle.asset.meta │ │ │ ├── door-top-1.asset │ │ │ ├── door-top-1.asset.meta │ │ │ ├── door-top.asset │ │ │ └── door-top.asset.meta │ │ │ ├── Nature.meta │ │ │ ├── Nature │ │ │ ├── Cactus.asset │ │ │ ├── Cactus.asset.meta │ │ │ ├── CactusFlower.asset │ │ │ ├── CactusFlower.asset.meta │ │ │ ├── Leaf.asset │ │ │ ├── Leaf.asset.meta │ │ │ ├── Palm-tree-leaf.asset │ │ │ ├── Palm-tree-leaf.asset.meta │ │ │ ├── Palm-tree.asset │ │ │ ├── Palm-tree.asset.meta │ │ │ ├── Trunk.asset │ │ │ ├── Trunk.asset.meta │ │ │ ├── blatt.asset │ │ │ └── blatt.asset.meta │ │ │ ├── Ores.meta │ │ │ ├── Ores │ │ │ ├── Bernstein.asset │ │ │ ├── Bernstein.asset.meta │ │ │ ├── BernsteinRaw.asset │ │ │ ├── BernsteinRaw.asset.meta │ │ │ ├── OpalInStone.asset │ │ │ ├── OpalInStone.asset.meta │ │ │ ├── OpalRaw.asset │ │ │ ├── OpalRaw.asset.meta │ │ │ ├── PerlInSand.asset │ │ │ └── PerlInSand.asset.meta │ │ │ ├── Rules.meta │ │ │ ├── Rules │ │ │ ├── Default-Biom-Top-Rule.asset │ │ │ └── Default-Biom-Top-Rule.asset.meta │ │ │ ├── Terrain.meta │ │ │ ├── Terrain │ │ │ ├── Backgrounds.meta │ │ │ ├── Backgrounds │ │ │ │ ├── Dirt-Bg-Top.asset │ │ │ │ ├── Dirt-Bg-Top.asset.meta │ │ │ │ ├── Dirt-Bg.asset │ │ │ │ ├── Dirt-Bg.asset.meta │ │ │ │ ├── Sky-Brick-bg.asset │ │ │ │ ├── Sky-Brick-bg.asset.meta │ │ │ │ ├── sand-topBG.asset │ │ │ │ ├── sand-topBG.asset.meta │ │ │ │ ├── sandBG.asset │ │ │ │ └── sandBG.asset.meta │ │ │ ├── Foreground.meta │ │ │ └── Foreground │ │ │ │ ├── Dirt (Top).asset │ │ │ │ ├── Dirt (Top).asset.meta │ │ │ │ ├── Dirt.asset │ │ │ │ ├── Dirt.asset.meta │ │ │ │ ├── Grass.asset │ │ │ │ ├── Grass.asset.meta │ │ │ │ ├── Sand (Top).asset │ │ │ │ ├── Sand (Top).asset.meta │ │ │ │ ├── Sandblock.asset │ │ │ │ ├── Sandblock.asset.meta │ │ │ │ ├── Sandstone.asset │ │ │ │ ├── Sandstone.asset.meta │ │ │ │ ├── Sky-Brick.asset │ │ │ │ ├── Sky-Brick.asset.meta │ │ │ │ ├── SnowBlock (Left).asset │ │ │ │ ├── SnowBlock (Left).asset.meta │ │ │ │ ├── Snowblock.asset │ │ │ │ ├── Snowblock.asset.meta │ │ │ │ ├── SnowedDirt.asset │ │ │ │ ├── SnowedDirt.asset.meta │ │ │ │ ├── Wolke_bottom-left.asset │ │ │ │ ├── Wolke_bottom-left.asset.meta │ │ │ │ ├── Wolke_bottom-right.asset │ │ │ │ ├── Wolke_bottom-right.asset.meta │ │ │ │ ├── Wolke_bottom.asset │ │ │ │ ├── Wolke_bottom.asset.meta │ │ │ │ ├── Wolke_middle-left.asset │ │ │ │ ├── Wolke_middle-left.asset.meta │ │ │ │ ├── Wolke_middle-middle.asset │ │ │ │ ├── Wolke_middle-middle.asset.meta │ │ │ │ ├── Wolke_middle-right.asset │ │ │ │ ├── Wolke_middle-right.asset.meta │ │ │ │ ├── Wolke_top-left.asset │ │ │ │ ├── Wolke_top-left.asset.meta │ │ │ │ ├── Wolke_top-middle.asset │ │ │ │ ├── Wolke_top-middle.asset.meta │ │ │ │ ├── Wolke_top-right.asset │ │ │ │ └── Wolke_top-right.asset.meta │ │ │ ├── Utils.meta │ │ │ └── Utils │ │ │ ├── Crack.asset │ │ │ ├── Crack.asset.meta │ │ │ ├── Focus.asset │ │ │ ├── Focus.asset.meta │ │ │ ├── Stone.asset │ │ │ └── Stone.asset.meta │ ├── VFX.meta │ └── VFX │ │ ├── DEMO GRAPH.vfx │ │ ├── DEMO GRAPH.vfx.meta │ │ ├── New Graph.vfx │ │ └── New Graph.vfx.meta ├── Docs │ ├── Bioms.txt │ └── Blocks.txt ├── GlobalSuppressions.cs ├── Packages │ ├── manifest.json │ └── packages-lock.json ├── ProjectSettings │ ├── AudioManager.asset │ ├── BurstAotSettings_StandaloneWindows.json │ ├── ClusterInputManager.asset │ ├── CommonBurstAotSettings.json │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── TimelineSettings.asset │ ├── URPProjectSettings.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ └── XRSettings.asset ├── UIElementsSchema │ ├── GlobalNamespace.xsd │ ├── UIElements.xsd │ ├── Unity.Cloud.Collaborate.Components.ChangeListEntries.xsd │ ├── Unity.Cloud.Collaborate.Components.xsd │ ├── Unity.Cloud.Collaborate.Views.xsd │ ├── Unity.UI.Builder.xsd │ ├── UnityEditor.PackageManager.UI.Internal.xsd │ ├── UnityEditor.Rendering.LookDev.xsd │ ├── UnityEditor.ShaderGraph.Drawing.xsd │ ├── UnityEditor.U2D.Animation.xsd │ ├── UnityEditor.U2D.Layout.xsd │ ├── UnityEditor.UIElements.Debugger.xsd │ ├── UnityEditor.UIElements.xsd │ ├── UnityEditor.VFX.UI.xsd │ └── UnityEngine.UIElements.xsd ├── UserSettings │ └── EditorUserSettings.asset └── packages.config ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /Game-Blocket/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.cs] 2 | 3 | # IDE0090: Use 'new(...)' 4 | dotnet_diagnostic.IDE0090.severity = none 5 | -------------------------------------------------------------------------------- /Game-Blocket/.vsconfig: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0", 3 | "components": [ 4 | "Microsoft.VisualStudio.Workload.ManagedGame" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 376154c0afdd15644b480176532703c6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Blocks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 169e47e9d2da47a48a79ceb4d7b6843a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Blocks/Default.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e712d24469dba9f4f820f68181e0c535 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Blocks/Grass/grass-animation 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Animations/Blocks/Grass/grass-animation 1.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Blocks/Grass/grass-animation 1_0.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2e2698ce944ad54dab8e1272261c5d1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Blocks/Grass/grass-animation.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df14368f4d1aefd458638fc0645050e6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Blocks/Hit.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f0024499ff2854409ad1f2e9b442274 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Blocks/ItemAnimations.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 863a312719b1e3740a1ed4c754538997 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Enemy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 926eecd0be888c2469603a1f2444d7fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Enemy/Zombie.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72e6b607c738303488af6dfc047179c9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Enemy/Zombie/ZombieSprite.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad034fae8acfa704abebd020e725ae09 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Enemy/Zombie/Zombie_normalAttack.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ee165acc80e3b3439b2ab7cfb0a0c4d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Enemy/Zombie/Zombie_punch.psb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Animations/Enemy/Zombie/Zombie_punch.psb -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Enemy/Zombie/Zombie_walk.psb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Animations/Enemy/Zombie/Zombie_walk.psb -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Enemy/Zombie/Zombie_walking.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4bba3351c3cccc5408133948166ee1e4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Player.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9425e63e4da5414a8cf2da8b825d0f3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Player/PlayerModel.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab3d090c3bdafef4bbe53a819e505ccc 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Player/Player_Idle.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cdb9ec320686d2e43882bebfbb7ae136 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Player/Player_Jumping.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae42f78b3feff0f4f8129c18779d48c3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Player/Player_Jumping_End.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 582e9a164d1493c4f8d2e360dcafbd14 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Player/Player_Running.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f938cffddacde7047add4a0323bf59fb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/PlayerModel.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea5ab0106c049c44ea145cf954ff8947 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 9100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Player_Crawl_Move.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 458e6ec60033f7e4aa5700f183459604 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Player_Idle.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5f06735d21b1a447b38585a9d7437cb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Player_Jumping.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5401a78cff5074f45ba661608c01637d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Player_Jumping_End.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b60c242929f8473428e2f59f575b5220 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Animations/Player_Running.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0813accb24cb5ef4583e974d55721430 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 7400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Global Volume Profile.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4d848511ace2264a9a613f01e10392e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Lighting_Settings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e33db8e1856c7bb49b64bb683a20f435 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4890085278179872738 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Palette.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 75ef3b2715dc65b44983de091564d15c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Palette/TilePalette.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cdf7a17ea0d935b4989c525e3a5d63ca 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Physics.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 935742c031cc7e140acbb4ca063b0fb7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Physics/Player-Physics.physicsMaterial2D: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!62 &6200000 4 | PhysicsMaterial2D: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: Player-Physics 10 | friction: 0 11 | bounciness: 0 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Physics/Player-Physics.physicsMaterial2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d38a4025d458a0e4da7add0fdc6d5108 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 6200000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2aea75f03b7ec0438a0efcd8b2159db 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/Assets.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2504db86ab40fc4893bae27a6468cff 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/Bioms.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a5f6f799e573c04f9ff50e5ee0e727c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/Bioms/Desert.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6679dc32c099c0d40967d40357bebee9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/Bioms/Plains.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29b0f6e63e160294face5a7539aa68dc 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/Bioms/Snow.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d298b72bcab36c4dbb987164a436deb 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/Camera.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c89fd5534d680c45b090ff4ec056c98 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/Enemies/Zombie.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fa23f42fd79765418b7e844d5d84e6b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/Enemies/ZombieSprite.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e24b80883c99a7a4b884488ee2ef4e08 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/Mob.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b092efc1a3a3a04794a42fa7c49a410 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/Player.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36a2a11a10bb895468184aa8918a22c1 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/Recipes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cadbdfa168ebcf742a871015e1d7e72e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/Recipes/Wooden Sword.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1af853b6a7d2d824b9d95c0e09fe29c6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 577f2607b79d766459fb3cf09e5340bb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/UI/ConsoleEntry.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cc895b1a9eb24540bc01a2b54a9ecfa 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/UI/Crafting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c959b22e9e1dcdc41adf769880e23fc1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/UI/InvSlot.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08b57b6a984ad5246b5145e9856bbb24 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/UI/ListContent 1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29f3864126b1a234f96e83dc5e192912 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/UI/ListContent.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1dff97ee8dcf4348ae5b1d4ece67cdb 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/UI/LoadingScreen.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf0b35f4090f7fc409bc4e6c5154ffcf 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/UI/LobbyClient.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1922f37c175d0fa419dae2c557099bf0 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/UI/SettingsCanvas.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ddd4368de753b5489a09883a13ee8e5 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/UI/SlotOptions.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3739967f461fa244b217fc8feefab35 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/UI/UIMainGame.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf4126c4be557a040815a7c30aa8e3c3 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/UI/UIProfileSite.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab3d51d745fddec42b1ed7e932b394c2 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Prefabs/World.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f8afa7ba4b1ace43a1488e9989f22f5 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Render.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5291cc93c770ea94b8063de1bf162f1b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Render/Lighting_Settings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 40241172614c48045a9113d11806b3cf 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4890085278179872738 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Render/PPP.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: deb351b9f3d23ea48b38b4b7917df734 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Render/Renderer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fef466aca0fb4fa479942c7bf73a1190 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Render/UniversalRenderPipelineAsset 1.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fe3847257cf40a498d6c4fc134fdca2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aaad233af11d2af42976ff1d97bf3c86 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scenes/Dungeon.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 912366b1b5b1eed468b51a4db3f2a7b7 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scenes/Lobby.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85cd762f2abb75e40a0dc14d16ad27e6 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scenes/MainGame.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e26a9d083f3339241bfe160a70e7c0a7 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scenes/MainMenu.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3321412b6b9d56b42ade1d9615f76121 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6dfd71c81cd2644f971c5ca66d7c8d6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Camera/FluentCameraBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11377fc749eec3e4a96eb2bd64623d51 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Camera/LOL.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df4ed05194eded441a634785f098b6ac 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Camera/MoveBackgroundWithPlayer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41101f1a7238db54aa8e9147cfa80dcc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Camera/SmoothCamera.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e61b40f13a2935d4c9fad7de42eeef54 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/DataStorage.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d3902e49910cd9e47a92c9e162ca7fb7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/DataStorage/AssetIOEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c3b0ffec8d1f70459856b2807479fc6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/DataStorage/PlayerProfile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6df8bdfd8e59bbb4fad22b63472d728e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/DataStorage/Profile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0e66c5bf9b37bd4e901d2180616446a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/DataStorage/ProfileHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71e48e209bad2a74ba04af74ef3181c1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/DataStorage/WorldProfile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f2e038d97bac704fa7ff077bc262bfe 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Dungeon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 772e8fd0a6e3e1e4485baf2d90a99e3f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Dungeon/DungeonGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e257c5276478b5344ae89ff69e6aa136 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Dungeon/ProceduralGenerationAlgorithms.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9c3561704ebc95a439635d455b54de10 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Dungeon/RandomDungeonGeneratorEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c4e291ad64de9046996af01f5c92d53 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Dungeon/Scriptabel Objects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a5ac8365606817b43ac8e3e1d498acb9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Dungeon/Scriptabel Objects/Dungeon Test.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29622f526ca46b0458f4372bec954104 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Dungeon/Scriptabel Objects/DungeonSO.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46feb60d4b15ffb49a4956ca374a22b9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Dungeon/TilemapVisualizer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e9830f9a5fe27b40bfcf1ecc1a0e950 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Dungeon/WallGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a225066fe1b6a345a2552974809bdba 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Entities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bd138d5af9d21b42a7c5ebc0d6177ad 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Entities/BlockEntities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f1b87f23f25a2044b862b01374bf13d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Entities/Entity.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | [System.Serializable] 4 | public class Entity{ 5 | public string name; 6 | [Tooltip("Mob ID > 10000")] 7 | public uint entityId; 8 | public uint sizeX, sizeY; 9 | 10 | } -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Entities/Entity.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8c0e18559016004eb2b8eb5ba6e7e21 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Entities/MobEntities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a14b885a500df9408021c0cfe41f7f3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Entities/MobEntities/Enemies.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98633627f9d424d43846c5338bafe6c4 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Entities/MobEntities/Enemies/EnemieSpawner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d823ebc6d8d966849b455eb28e33b7f8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Entities/MobEntities/Enemies/EnemySO.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e042cbd6e74da8a4db6dcb0a8b1a1001 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Entities/MobEntities/Enemies/FlyingEnemyBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b519127beb67e6349a7609e0a1dcaf4f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Entities/MobEntities/Enemies/SkeletonLogic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7a8a275768e5824f9d79f4f07b9a5ee 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Entities/MobEntities/Enemies/ZombieBrain.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5545c2b9de5ee5244926d051411ba205 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Entities/MobEntities/Mob.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 05fbf250c3235c241bc72dafcc1a56cb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Entities/MobEntities/MobAssets.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 35b11deca7e73774f9ea395328813aed 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Entities/MobEntities/MobHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d551c67418ab734e96de608f4f6a463 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/GameListener.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d95d09b71c55aaf42964a079228e42dd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/ItemHandling.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ac1363e033773b4faf2462bd9a1cae0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/ItemHandling/Crafting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe6fccf16ef636748be40ab7cdb3f09b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/ItemHandling/Crafting/CraftingHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bddfe493db03d1042841e4d3d16407e1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/ItemHandling/Crafting/CraftingRecipe.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b849f401b9246c41804f744118f2441 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/ItemHandling/Crafting/CraftingStation.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bf33f8ee0ac754a4e835f2528a91ed8c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/ItemHandling/Item.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 67fd3e8d64dab4940976cdd7ba0289bb 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/ItemHandling/ItemAssets.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d984b8f0d51ece49a553e0de44df8f4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Light.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8b1390c77852b449a40cd2b578c6850 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Light/ClockHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 350946bae6fb25544a46682e49232714 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Light/LightScript.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2bbc6682be96d02448f31ddade7cef8f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Management.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 501644430faaa0b4bb21b0d58053a3c9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Management/Console.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a628624f9a6913640b54c81f05ed5e5d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Management/Console/ConsoleEntry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da0a0fa3d7a88cc43881708b484bfdda 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Management/Console/Consolehandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a8b003c87bebd74aa5ee5b0ef133fab 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Management/DebugVariables.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 841cac1e43ba5884b943bb0d27349781 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Management/GameManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d5ae53601c7f77e44878b89d0beed49e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Management/GlobalVariables.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b7054781a14af2a409ca6d42fb9ee1bd 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Management/NetworkVariables.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf3c5e2e2f600eb45a4ee0d9838f4714 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Player.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c7c24ef052e1d14ba95be11d474c4c1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Player/Inventory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd6a9bb50aa66d148add8bb16416ce20 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Player/ItemFollowing.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c03918195537d2848b40b816c6a5cc50 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Player/Movement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad4799d8469bd5d4fab3ad9fe12d47c2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Player/PlayerInteraction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d44572247a64c004482228d33b4d0d77 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Player/PlayerVariables.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3184964d2527804ba81aae283d79431 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Structure.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ced32ded6710514685298357566525a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Structure/Structure.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af66af9154dabe94e92b8f89006c8a14 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Structure/StructureAssets.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 575aba8065e4ff0418cd99f7a140e825 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Terrain.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d5ea90a92e930d4bb056751e7c8275a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Terrain/ClientTerrainHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c89a9f834fd1ec24a9210cddbad7849e 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Terrain/Components.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c673cc18710280b46918ff036082a428 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Terrain/Components/Biom.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e47b045bfe515ff45afe88645f743998 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Terrain/Components/Decoration.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95ae6c1a1a30e7443bf8a0475d4155d6 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Terrain/Components/Drop.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0011d4022cf9a84596f72f7e3561ef4 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Terrain/Components/NoiseGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d699414d607826442aa82208ebcdc5bc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Terrain/ServerTerrainHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a05ad9fe81c724e4c83901a167b90833 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Terrain/TerrainChunk.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e433fc1d3123dd4686e2914bd0cbfca 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Terrain/TerrainGeneration.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b62b494d2f78d5f48a5a9ef0d5ddf2b9 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Terrain/TerrainHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 55e464d4999465f49a75bb202764c88d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Terrain/WorldAssets.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1b6f45dcff0c4948bc122b03fbc6c73 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/Terrain/WorldData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e37cca21d59776b4592cdf22f7d5ad04 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: -20 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d65b026a4e0cddb4387380b81b6f776e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/Lobby.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9a6448c5bf7e76b4f93e1fe793c2ebf0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/Lobby/ListContentUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b72da58ae048e0a4dbcc9aa60279f37c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/Lobby/UILobby.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ab006c7735e5214d810151c2047d55b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/Lobby/UIProfileSite.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 621708e01a5dd6245a507e8378b6953c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/MainGame.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc187407624561740b2caf3f682acbf9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/MainGame/CraftingButtonRecognition.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44d009ac2e382f942aa43054940ccdfe 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/MainGame/PlayerEvents.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class PlayerEvents : MonoBehaviour 4 | { 5 | // Start is called before the first frame update 6 | void Start() 7 | { 8 | 9 | } 10 | 11 | // Update is called once per frame 12 | void Update() 13 | { 14 | 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/MainGame/PlayerEvents.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 904109c9e7827d2448543d32f56ada68 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/MainGame/PlayerHealth.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ec80d8a6d1179244fabd6fb20fc037b1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/MainGame/RecipeRecommendationList.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2af18cbb8281ea1439074e93feeb728c 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/MainGame/RecipeShowCase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b1031499fe1c224b843f1bfc92bcf6f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/MainGame/ShowTimer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc5d0ec43c9c58149ac8626f1bde4a62 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/MainGame/SlotOptionsScript.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0830b62593ca6b340a5d7054ac4983ec 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/MainGame/UIInventorySlot.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d57d66c47fe1094db7064772dc79b08 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/MainManu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11f3cead27ce9d444a99566961d3450b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/MainManu/UIMainMenu.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c82327c830422914698148c082328add 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/MainMenu.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b2a4a9f81e0642249903fbf563fc966a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/MainMenu/ChangeTextOnValueChange.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 187224f538e7af743a37105767d64fcc 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/MainMenu/PickRandomItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 588da00ce1461dd4ebb13b2e156d2843 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/MainMenu/ScaleOnBtnHover.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca4868c68b1230846b66e65792e4ca8f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Scripts/UI/ScrollViewHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d56fa66cbd37aa4d92d70647a2e444a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f54d1bd14bd3ca042bd867b519fee8cc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e7e8f5a82a3a134e91c54efd2274ea9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b8d251f9af63b746bf2f7ffe00ebb9b 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce51c8e33b734b4db6086586558c53a3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b63e0053080646b9819789bf3bf9fa17 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Fonts/Anton OFL.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73a79399807f4e8388c2cbb5494681ca 3 | timeCreated: 1484172033 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Fonts/Anton.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Fonts/Anton.ttf -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Fonts/Bangers - OFL.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efe0bf4ac872451e91612d1ae593f480 3 | timeCreated: 1484171296 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Fonts/Bangers.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Fonts/Bangers.ttf -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Fonts/Electronic Highway Sign.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Fonts/Electronic Highway Sign.TTF -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Fonts/Oswald-Bold - OFL.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2cf87a8a7a94aa8b80dff1c807c1178 3 | timeCreated: 1484171296 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Fonts/Oswald-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Fonts/Oswald-Bold.ttf -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5808953df7a24274a851aa6dee52d30e 3 | folderAsset: yes 4 | timeCreated: 1436068007 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5bff2544887143f5807c7d5059d07f79 3 | folderAsset: yes 4 | timeCreated: 1436068007 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Prefabs/Text Popup.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b06f0e6c1dfa4356ac918da1bb32c603 3 | timeCreated: 1435130987 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Prefabs/TextMeshPro - Prefab 1.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6e39ced0ea046bcb636c3f0b2e2a745 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Prefabs/TextMeshPro - Prefab 2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdad9d952ae84cafb74c63f2e694d042 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6d3a169ad794942a21da6a552d62f6f 3 | folderAsset: yes 4 | timeCreated: 1436068007 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f422cd1388b01047a58cd07c7a23d9d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Blue to Purple - Vertical.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 479a66fa4b094512a62b0a8e553ad95a 3 | timeCreated: 1468189245 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Dark to Light Green - Vertical.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c86a3366cd840348ebe8dc438570ee4 3 | timeCreated: 1468443381 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Light to Dark Green - Vertical.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cf8ae092ca54931b443bec5148f3c59 3 | timeCreated: 1468443381 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Yellow to Orange - Vertical.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69a525efa7e6472eab268f6ea605f06e 3 | timeCreated: 1468213165 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f1e85c79acf49968737939ce8b445c7 3 | folderAsset: yes 4 | timeCreated: 1436068007 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a89fa14b10d46a99122fd4f73fca9a2 3 | timeCreated: 1484172732 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 125cb55b44b24c4393181402bc6200e6 3 | NativeFormatImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Electronic Highway Sign SDF.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc36b3fdc14f47ebb36fd484a67e268a 3 | timeCreated: 1487729771 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Oswald Bold SDF.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0161d805a3764c089bef00bfe00793f5 3 | timeCreated: 1484171878 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5302535af1044152a457ed104f1f4b91 3 | timeCreated: 1487723159 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ac6db30e75b49b282a3564110579f27 3 | folderAsset: yes 4 | timeCreated: 1480573362 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Resources/Sprite Assets/Default Sprite Asset.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbef3c704dce48f08a44612d6c856c8d 3 | timeCreated: 1454544381 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Resources/Sprite Assets/DropCap Numbers.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14aa93acbb234d16aaef0e8b46814db6 3 | timeCreated: 1464163339 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db1090641b3241f6995b587eb21637bc 3 | folderAsset: yes 4 | timeCreated: 1436068007 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/06 - Extra Rich Text Examples.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39a1fa96ad2a449b908fca29d4297a74 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/08 - Improved Text Alignment.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fe2257128d9401fad0790f581dc8a6f 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/09 - Margin Tag Example.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 349f38d3606449708c7340d26740e1e2 3 | timeCreated: 1434495347 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/10 - Bullets & Numbered List Example.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3f814e1d12c45568daf3dd9a86a0e61 3 | timeCreated: 1464165314 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/11 - The Style Tag.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 84ed36ad77dd4956b2ffe3769f759879 3 | timeCreated: 1488146780 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/12 - Link Example.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9747140c28254be2adc582210dfb89b8 3 | timeCreated: 1432629665 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/12a - Text Interactions.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 08572ab7713642c8a60789750f0bce5c 3 | timeCreated: 1468999615 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/13 - Soft Hyphenation.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 875684baf40f4d008ce806d03e2a81b2 3 | timeCreated: 1487545080 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/14 - Multi Font & Sprites.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22a2fba786ad4c40ac0ba09f0b933100 3 | timeCreated: 1488062344 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/15 - Inline Graphics & Sprites.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e76e6c0f81964cbda3fe0b7d26ed8060 3 | DefaultImporter: 4 | userData: 5 | assetBundleName: 6 | assetBundleVariant: 7 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/16 - Linked text overflow mode example.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9442cda25baa4a0bb544c4d095b00caa 3 | timeCreated: 1480388889 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/17 - Old Computer Terminal.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3e2e4d7b0bed4cf9ab827e9f32448f69 3 | timeCreated: 1435300594 4 | licenseType: Store 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/18 - ScrollRect & Masking & Layout.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03f9d74cec8e4b94a29d2dfd177c821b 3 | timeCreated: 1445416487 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/19 - Masking Texture & Soft Mask.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9abcd5bd764646568a6ea70d00f9264c 3 | timeCreated: 1465858578 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/20 - Input Field with Scrollbar.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 337f92480dd24675aae9e79210fb1ad9 3 | timeCreated: 1487199155 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/22 - Basic Scripting Example.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6250f98e58fe4abbaada5d84b7ca846d 3 | timeCreated: 1449626883 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/23 - Animating Vertex Attributes.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54e994244b4b467e8583cf2da6dcc716 3 | timeCreated: 1461311052 4 | licenseType: Pro 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/25 - Sunny Days Example.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9b4c22e15cff344ba9fc6542a58dd07 3 | timeCreated: 1472854817 4 | licenseType: Free 5 | DefaultImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scenes/26 - Dropdown Placeholder Example.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0851605490a599b46b6ac5cb681d93ea 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3979ce59e55144c89a2b3b3f8dcf7fd3 3 | folderAsset: yes 4 | timeCreated: 1436068007 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f970ea55f9f84bf79b05dab180b8c125 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01_UGUI.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8ef7be1c625941f7ba8ed7cc71718c0d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark02.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8538afcddc14efbb5d9e94b7ae50197 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: 6 | - TheFont: {instanceID: 0} 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark03.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a73109742c8d47ac822895a473300c29 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: 6 | - TheFont: {instanceID: 0} 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark04.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc20866c0d5e413ab7559440e15333ae 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: 6 | - TheFont: {instanceID: 0} 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/CameraController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d687537154440a3913a9a3c7977978c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/ChatController.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53d91f98a2664f5cb9af11de72ac54ec 3 | timeCreated: 1487197841 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/DropdownSample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac1eb05af6d391b4eb0f4c070a99f1d0 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/EnvMapAnimator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4b6f99e8bc54541bbd149b014ff441c 3 | timeCreated: 1449025325 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/ObjectSpin.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f19c7f94c794c5097d8bd11e39c750d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/ShaderPropAnimator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2787a46a4dc848c1b4b7b9307b614bfd 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/SimpleScript.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9eff140b25d64601aabc6ba32245d099 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/SkewTextExample.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d412675cfb3441efa3bf8dcd9b7624dc 3 | timeCreated: 1458801336 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_DigitValidator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a7eb92a01ed499a987bde9def05fbce 3 | timeCreated: 1473112765 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_FrameRateCounter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 686ec78b56aa445795335fbadafcfaa4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/TMPro_InstructionOverlay.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3c1afeda5e545e0b19add5373896d2e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/TeleType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e32c266ee6204b21a427753cb0694c81 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | assetBundleName: 10 | assetBundleVariant: 11 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshProFloatingText.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a4d4c76e63944cba8c7d00f56334b98c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: 6 | - TheFont: {instanceID: 0} 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshSpawner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76c11bbcfddf44e0ba17d6c2751c8d84 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: 6 | - TheFont: {instanceID: 0} 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/VertexJitter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ed57967c52645d390a89dcf8f61ba73 3 | timeCreated: 1461286718 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeA.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7cfa58e417a46ea8889989684c2522e 3 | timeCreated: 1462089320 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeB.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4e0d9ccee5f4950be8979268c9014e0 3 | timeCreated: 1462093319 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Scripts/VertexZoom.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 52ec835d14bd486f900952b77698b7eb 3 | timeCreated: 1466280202 4 | licenseType: Pro 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 701e577af2ba48b689972d42efb95456 3 | folderAsset: yes 4 | timeCreated: 1488176891 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Sprites/Default Sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Sprites/Default Sprites.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Sprites/DropCap Numbers.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Sprites/DropCap Numbers.psd -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e5c6d5e25574122a7a12dbdbbeed156 3 | folderAsset: yes 4 | timeCreated: 1436068007 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Brushed Metal 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Brushed Metal 3.jpg -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Floor Cement.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Floor Cement.jpg -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Floor Tiles 1 - diffuse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Floor Tiles 1 - diffuse.jpg -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Fruit Jelly (B&W).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Fruit Jelly (B&W).jpg -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Diagonal (Color).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Diagonal (Color).jpg -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Horizontal (Color).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Horizontal (Color).jpg -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Vertical (Color).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Vertical (Color).jpg -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Mask Zig-n-Zag.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Mask Zig-n-Zag.psd -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Small Crate_diffuse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Small Crate_diffuse.jpg -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Small Crate_normal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Small Crate_normal.jpg -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Sunny Days - Seamless.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Sunny Days - Seamless.jpg -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Text Overflow - Linked Text Image 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Text Overflow - Linked Text Image 1.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Text Overflow - Linked Text UI Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Text Overflow - Linked Text UI Screenshot.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Circle.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Circle.psd -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Diagonal.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Diagonal.psd -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Radial Double.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Radial Double.psd -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Radial Quad.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Radial Quad.psd -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ab70aee4d56447429c680537fbf93ed 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e59c59b81ab47f9b6ec5781fa725d2c 3 | timeCreated: 1484171296 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 243e06394e614e5d99fab26083b707fa 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Resources/Fonts & Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 731f1baa9d144a9897cb1d341c2092b8 3 | folderAsset: yes 4 | timeCreated: 1442040525 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2e498d1c8094910479dc3e1b768306a4 3 | timeCreated: 1484171803 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f586378b4e144a9851e7b34d9b748ee 3 | timeCreated: 1484171803 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- 1 | )]}〕〉》」』】〙〗〟’”⦆»ヽヾーァィゥェォッャュョヮヵヶぁぃぅぇぉっゃゅょゎゕゖㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ々〻‐゠–〜?!‼⁇⁈⁉・、%,.:;。!?]):;=}¢°"†‡℃〆%,. -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fade42e8bc714b018fac513c043d323b 3 | timeCreated: 1425440388 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d82c1b31c7e74239bff1220585707d2b 3 | timeCreated: 1425440388 4 | licenseType: Store 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Resources/Sprite Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 512a49d95c0c4332bdd98131869c23c9 3 | folderAsset: yes 4 | timeCreated: 1441876896 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c41005c129ba4d66911b75229fd70b45 3 | timeCreated: 1480316912 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4aecb92fff08436c8303b10eab8da368 3 | folderAsset: yes 4 | timeCreated: 1441876950 5 | licenseType: Pro 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f952c082cb03451daed3ee968ac6c63e 3 | timeCreated: 1432805430 4 | licenseType: Store 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f5b5dff67a942289a9defa416b206f3 3 | timeCreated: 1436653997 4 | licenseType: Pro 5 | NativeFormatImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e9f693669af91aa45ad615fc681ed29f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48bb5f55d8670e349b6e614913f9d910 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e3b057af24249748ff873be7fafee47 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 128e987d567d4e2c824d754223b3f3b0 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd89cf5b9246416f84610a006f916af7 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14eb328de4b8eb245bb7cea29e4ac00b 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc1ede39bf3643ee8e493720e4259791 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a02a7d8c237544f1962732b55a9aebf1 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c8d12adcee749c344b8117cf7c7eb912 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe393ace9b354375a9cb14cdbbc28be4 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85187c2149c549c5b33f0cdb02836b17 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7ada0af4f174f0694ca6a487b8f543d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68e6db2ebdc24f95958faec2be5558d6 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf81c85f95fe47e1a27f6ae460cf182c 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 407bc68d299748449bbf7f48ee690f8d 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c334973cef89a9840b0b0c507e0377ab 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3997e2241185407d80309a82f9148466 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d930090c0cd643c7b55f19a38538c162 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0603b6d5186471b96c778c3949c7ce2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- 1 | This sample of beautiful emojis are provided by EmojiOne https://www.emojione.com/ 2 | 3 | Please visit their website to view the complete set of their emojis and review their licensing terms. -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 381dcb09d5029d14897e55f98031fca5 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f05276190cf498a8153f6cbe761d4e6 3 | timeCreated: 1480316860 4 | licenseType: Pro 5 | TextScriptImporter: 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62750bfaf0e609e49a0b31572f6da0e1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ae63e48a92e28c43aed4bd6ab0df010 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Materials/Dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Materials/Dirt.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Materials/Player.physicsMaterial2D: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!62 &6200000 4 | PhysicsMaterial2D: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: Player 10 | friction: 0.4 11 | bounciness: 0 12 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Materials/Player.physicsMaterial2D.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7a43285073ab5b439fd4b0ef7381569 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 6200000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Models.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fac9937cf011d5b48a27e6cd8af8b066 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Models/PlayerModel.psb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Models/PlayerModel.psb -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Null.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Null.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Render Texture Camera.renderTexture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66605f5ccaafc6948a310e9a7903b94d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30fb0456d9b0a924d8f778b8addb6eb8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ef863ff3060e544985b41bd766553ae 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 982c3fe982b5ef747ac2b07b30c97bdd 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Animation/grass-animation 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Animation/grass-animation 1.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Animation/grass-animation 1_0.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddc90feedde000949897280f0024bb06 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Animation/grass-animation.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da2f6b743d10cd943b851cce93d6cd49 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Bernstein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Bernstein.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da059c09018fb6847968df904ae75975 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Animation.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14151527b2b5481438108126a4e216e5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Crack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Crack.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/DIVS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 00ae83a681a8073479518f19401046e6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Grass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Grass.gif -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Ores.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71eec364c5a39a849838d006a6dc9926 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Ores/Bern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Ores/Bern.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Ores/Bernstein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Ores/Bernstein.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Ores/Opal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Ores/Opal.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Ores/Perl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Ores/Perl.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Ores/Raw_Opal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Ores/Raw_Opal.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eed054cc875b57749a72ce7b7aef77c2 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Background.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e0dd304d916544242b2d2a373b331c0c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Background/Dirt-Bg-Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Background/Dirt-Bg-Top.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Background/Dirt-Bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Background/Dirt-Bg.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Background/sand-topBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Background/sand-topBG.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Background/sandBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Background/sandBG.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Foreground.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f036e6a8ccda55042adec0d058935250 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Foreground/Dirt-Top1 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Foreground/Dirt-Top1 1.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Foreground/Sandstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Foreground/Sandstone.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Foreground/Snow-Block-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Foreground/Snow-Block-left.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Foreground/Snow-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Foreground/Snow-block.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Foreground/Snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Foreground/Snow.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Foreground/Stein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Foreground/Stein.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Foreground/sand-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Foreground/sand-top.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Foreground/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Terrain/Foreground/sand.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Visir 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Biome-Sprites/Visir 1.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Crack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Crack.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/DIVS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2b6dca9415c49b4b970840564d97fc6 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/DIVS/bdirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/DIVS/bdirt.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/DIVS/bgrass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/DIVS/bgrass.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/DIVS/bsand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/DIVS/bsand.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/DIVS/bsnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/DIVS/bsnow.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/DIVS/dirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/DIVS/dirt.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/DIVS/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/DIVS/grass.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/DIVS/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/DIVS/sand.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/DIVS/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/DIVS/snow.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Dirt-Bg-Top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Dirt-Bg-Top.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Dirt-Bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Dirt-Bg.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Dirt-Top1 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Dirt-Top1 1.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Grass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Grass.gif -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Opal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Opal.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Perl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Perl.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Plant-sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: def46c80ccf3fbd4191d8f3d2b7fa5c5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Sky-Brick-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Sky-Brick-bg.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Sky-Brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Sky-Brick.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Snow-Block-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Snow-Block-left.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Snow.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Visir 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Visir 1.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_bottom-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_bottom-left.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_bottom-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_bottom-right.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_bottom.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_middle-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_middle-left.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_middle-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_middle-middle.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_middle-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_middle-right.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_top-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_top-left.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_top-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_top-middle.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Wolke_top-right.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Wurzel 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Wurzel 1.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/Wurzel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/Wurzel.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/sand-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/sand-top.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/sand-topBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/sand-topBG.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Blocks/sandBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Blocks/sandBG.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/CraftingTables.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: be43b403856748447a6237954c16c432 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/CraftingTables/Crafting station 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/CraftingTables/Crafting station 1.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/CraftingTables/Crafting station.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/CraftingTables/Crafting station.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Dungeon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3053e9510e7ca7d47baf2bb939b16fab 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Dungeon/Brick-Bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Dungeon/Brick-Bg.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Dungeon/Brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Dungeon/Brick.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Dungeon/door-bottom-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Dungeon/door-bottom-1.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Dungeon/door-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Dungeon/door-bottom.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Dungeon/door-middle-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Dungeon/door-middle-1.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Dungeon/door-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Dungeon/door-middle.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Dungeon/door-top-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Dungeon/door-top-1.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Dungeon/door-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Dungeon/door-top.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Entities.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6278265217c5a7a4ca548bbfc50bed41 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Entities/Ghost2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Entities/Ghost2.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3cef7dcd99d7e54b997908fc1695c35 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Accessory.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2a7f1ec8288d37c448c8840a4984edff 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Armor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac7cf0809fc3dd24eb69f07974e52969 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Block.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 911996d2f145430439de817f010ae3cb 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Block/Nature.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce4e79e4fc606324e8b379f1e668bc67 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Block/Nature/Cactusblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Items/Block/Nature/Cactusblock.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Block/Nature/Flowerblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Items/Block/Nature/Flowerblock.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Block/Nature/Leafblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Items/Block/Nature/Leafblock.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Block/Nature/Palm-tree-leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Items/Block/Nature/Palm-tree-leaf.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Block/Nature/Palm-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Items/Block/Nature/Palm-tree.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Block/Nature/Trunkblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Items/Block/Nature/Trunkblock.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Block/Terrain.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5677431d2a7474e4f942c2c5ff84affe 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Block/Terrain/Dirtblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Items/Block/Terrain/Dirtblock.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Block/Terrain/Grassblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Items/Block/Terrain/Grassblock.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Block/Terrain/Meteoritblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Items/Block/Terrain/Meteoritblock.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Block/Terrain/Sandblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Items/Block/Terrain/Sandblock.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Block/Terrain/Snowblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Items/Block/Terrain/Snowblock.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Block/Terrain/Stoneblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Items/Block/Terrain/Stoneblock.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Ores.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dc41e0adf7919b54a88b039908b8f45f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Ores/Bernstein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Items/Ores/Bernstein.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Ores/Opal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Items/Ores/Opal.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Weapon-Sprites.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83c271627f5a1b44ba9cfacaf9fc1de8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Weapon-Sprites/Swords.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9f951896ff0d7940965f9a1412ed96e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Weapon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 525358030c6d9b14d8d16c0b456a66b5 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Weapon/Magic sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Items/Weapon/Magic sword.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Items/Weapon/Wooden-Sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Items/Weapon/Wooden-Sword.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Plants.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f304afa2075ab5b4f982e41de8bdcb7d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Plants/Tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Plants/Tree.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Plants/blatt-ecke-rechts-oben.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Plants/blatt-ecke-rechts-oben.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Plants/blatt-ecke-rechts-unten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Plants/blatt-ecke-rechts-unten.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Plants/blatt-links unten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Plants/blatt-links unten.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Plants/blatt-links-oben.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Plants/blatt-links-oben.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Plants/blatt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Plants/blatt.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Player.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9bce809a909b6448a98752239c5db42 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Player/Celeste_Main_char.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Player/Celeste_Main_char.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Player/Player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Player/Player.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/Player/Steeve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/Player/Steeve.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e1f87bef63216349a2ed28a83a7e4f0 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/Cursor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6babe99eb0ca4374c9014eb183832b59 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/Cursor/InventoryCur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/Cursor/InventoryCur.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/Cursor/MiningCur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/Cursor/MiningCur.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/Cursor/SwordCur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/Cursor/SwordCur.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/Lobby.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 292d0a8caf598fd4f80061a8c340973a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/Lobby/59036c7d253c0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/Lobby/59036c7d253c0.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/Lobby/Hill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/Lobby/Hill.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/Lobby/R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/Lobby/R.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/Lobby/RenameIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/Lobby/RenameIcon.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/Lobby/Trashcan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/Lobby/Trashcan.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e38b0a28f5d4a2458f2c2c7f8e972da 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Background-Inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Background-Inv.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Background.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37b205e41ce76bd419e50cacca40091d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Background/Mountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Background/Mountain.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Background/Plains_Background1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Background/Plains_Background1.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Background/Sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Background/Sky.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Background/plains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Background/plains.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Basic_Crafting_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Basic_Crafting_bg.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Card-BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Card-BG.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Card.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Crafting int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Crafting int.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Dark-Heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Dark-Heart.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Hearts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 447b296f25ddce045bfe23af5b6c2b2e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Hearts/Dark-Heart-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Hearts/Dark-Heart-half.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Hearts/Heart_Lila.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Hearts/Heart_Lila.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Hearts/half-Hearth-lila.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Hearts/half-Hearth-lila.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Hearts/null-Hearth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Hearts/null-Hearth.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Hearts/null_middleHeart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Hearts/null_middleHeart.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Shield.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Slotpng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Slotpng.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Slotpng_First.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Slotpng_First.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/Sword.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Sprites/UI/MainGame/bg hotbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blocketGame/Blocket-Game/be96ad8239f4ac41a5ac56802b4d60049b0dd3de/Game-Blocket/Assets/Textures/Sprites/UI/MainGame/bg hotbar.png -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c722192a20096604db03b80c6dca3c43 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/CraftingStations.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 82db08113b3d9b9418a7b90fbe3aa600 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/CraftingStations/Crafting station 1.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12922adde41d67e4d8074abfbe1674ef 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/CraftingStations/Crafting station.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4b4d018197cc9741b00f272edd60338 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/DIVSnew.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce34535362b19ee47811bc2b84303812 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/DIVSnew/Tree.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8073a824e811134db8fbfaff9d18de0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/DIVSnew/bdirt.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e2e0acc2c20f28a4f8ceaf6f9575b01e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/DIVSnew/bgrass.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ce49aa981f8e2a41a9923a2f410284c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/DIVSnew/bsand.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6570e6e63b98cd44791dfe4d7ff79914 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/DIVSnew/bsnow.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54991b400fdf7a541a43071193f939af 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/DIVSnew/dirt.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4aaffc6445a44c647bf1dd6c6e324dcc 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/DIVSnew/grass.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7317deb54d3ed734e871541c41b31a4f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/DIVSnew/sand.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab09be6a3f6f370408b3541dd026ac3d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/DIVSnew/snow.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c67a324d0db26e544a223c073ec1a1c2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Dungeon.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 057d3049acc170f4b8571d6fbe17c541 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Dungeon/Brick-Bg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62eff008b736d734bbe7b4ebd8e43060 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Dungeon/Brick.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4ad18dca405397e43ae9a938fdb634b0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Dungeon/door-bottom-1.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21431357a8b1b6f4982c565721f45a5c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Dungeon/door-bottom.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e86859a50878dd459fc243c8594be3c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Dungeon/door-middle-1.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 33042afddfe7c6740bf6c96c58e02261 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Dungeon/door-middle.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab3bdefc6932ddf49965fcd293a79d5b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Dungeon/door-top-1.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a70b3074eabb8248890773a8ff9089f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Dungeon/door-top.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 431680435ca480349ba6a7a8d201f608 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Nature.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aa3a1d32ed69e244b8b3a982bf63d9db 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Nature/Cactus.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ce94ed2ae6b5c7448c1717aac7342ec 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Nature/CactusFlower.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6ff0195f0b383e408cde8a71dca16e7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Nature/Leaf.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d94620a8cdce1e4694bd8d615d2101c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Nature/Palm-tree-leaf.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac3b45caf45f24a48a3f9a085d356b48 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Nature/Palm-tree.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c236d67cf2f44954f9e78a7d5fecdf68 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Nature/Trunk.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a2b039ad21dbea343a3af1d7a3f3e9c2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Nature/blatt.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c706feebda529404a87185c490a5575f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Ores.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16aebe5eb9a7cb347935361f8a9fd510 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Ores/Bernstein.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 368f8ab243ec2b24bb4dd5751cbf20f6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Ores/BernsteinRaw.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d38f80b22ed8d44cbbb1034055218f8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Ores/OpalInStone.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69dd537b464e3f142b42eca477a96bc2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Ores/OpalRaw.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 724096fddd1c12e45a2f94667cdb5f1c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Ores/PerlInSand.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc76d9a08eedba04888f09f100db4f02 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Rules.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a636f8052868ef44185625e6e9465dde 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Rules/Default-Biom-Top-Rule.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7934ecc6a6ce2ef428d2e231b058a3c0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1a67579fb47c6b9438961487aa7a2304 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Backgrounds.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 34f5afd94118e794da25dce45700fbb9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Backgrounds/Dirt-Bg-Top.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7aa42f6081c4f8a498d228fa119ea557 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Backgrounds/Dirt-Bg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30439b9c5e3b02142848ef927c278843 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Backgrounds/Sky-Brick-bg.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdd91a2e0afeb7b4cb764f41c0a61d43 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Backgrounds/sand-topBG.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c20608446e77f9c44a3819cef2944b0f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Backgrounds/sandBG.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a63c0c826cab3f4ea878397525659ce 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a721875ce5223514a89f18e337d96169 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/Dirt (Top).asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1d9145a7b6f3234689ca6d9f7af1e68 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/Dirt.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bcc34212cd215a4584d42c3c4ba8f29 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/Grass.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02761f359227ea640b301f8ed4704793 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/Sand (Top).asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6db0c34d3b5fc7b49a67163528b99ce5 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/Sandblock.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 240b651a1bc670d4793c99d2d9d9748e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/Sandstone.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6dd55900983680643a5a4c0608fa8567 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/Sky-Brick.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6fef2693afd24a341a95bd5c460d826b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/SnowBlock (Left).asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85bbcef59e1dece47b8ee8c71b6c1a9c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/Snowblock.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf38a69b1c9243a4a98ca4aca2367547 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/SnowedDirt.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0230af7654f2e154f8a8cfe6ab61bdd1 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/Wolke_bottom-left.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e5efc6a55c48e14d8632f9c3bcbbea9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/Wolke_bottom-right.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 929cdb6ce97528f4ca677ed1af393305 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/Wolke_bottom.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6dd88a1aa984b7e438ee5beaa71f6fc2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/Wolke_middle-left.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 64d965e8b7eac1142b21cab9c55d0a58 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/Wolke_middle-middle.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14db464aabea02a4590ab68c4e4875d3 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/Wolke_middle-right.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4560b5d089103124ca8be43af57f05c9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/Wolke_top-left.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f578893fdd6fa364fa1b49da42747cb7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/Wolke_top-middle.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29c36c8a3e919f943b6a7a5aa90b5c27 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Terrain/Foreground/Wolke_top-right.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ca6518f77eeb4a4da6058d8fff0fa83 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Utils.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c996de7cef0b4444b8b1cb364d793297 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Utils/Crack.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c743fd20d2a0a4d4aa3a3b9b148b4737 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Utils/Focus.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6f7e31978d96c2a4886320f4411b7e80 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/Textures/Tiles/Utils/Stone.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cd28115759dee2499f06013f9211b55 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/VFX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b962e3c9a11d194eb5e41034db7c253 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/VFX/DEMO GRAPH.vfx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 50cd28cb7e0a01640b7dceeaa1594247 3 | VisualEffectImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/Assets/VFX/New Graph.vfx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a91a20aa848435345a3294476f1455be 3 | VisualEffectImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Game-Blocket/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /Game-Blocket/ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "MonoBehaviour": { 3 | "Version": 3, 4 | "DisabledWarnings": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Game-Blocket/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /Game-Blocket/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /Game-Blocket/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2021.1.19f1 2 | m_EditorVersionWithRevision: 2021.1.19f1 (5f5eb8bbdc25) 3 | -------------------------------------------------------------------------------- /Game-Blocket/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Game-Blocket/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Hidden Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /Game-Blocket/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /Game-Blocket/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | --------------------------------------------------------------------------------