├── .gitignore ├── Assets ├── Cube.prefab ├── Cube.prefab.meta ├── Ground.mat ├── Ground.mat.meta ├── Prefabs.meta ├── Prefabs │ ├── Terrain Chunk.prefab │ ├── Terrain Chunk.prefab.meta │ ├── Water Chunk.prefab │ └── Water Chunk.prefab.meta ├── Scenes.meta ├── Scenes │ ├── Game.unity │ ├── Game.unity.meta │ ├── Game_Profiles.meta │ └── Game_Profiles │ │ ├── Post Processing Profile 1.asset │ │ ├── Post Processing Profile 1.asset.meta │ │ ├── Post Processing Profile.asset │ │ └── Post Processing Profile.asset.meta ├── Scripts.meta ├── Scripts │ ├── Block.cs │ ├── Block.cs.meta │ ├── CamFly.cs │ ├── CamFly.cs.meta │ ├── FastNoise.cs │ ├── FastNoise.cs.meta │ ├── Inventory.cs │ ├── Inventory.cs.meta │ ├── MouseLook.cs │ ├── MouseLook.cs.meta │ ├── PlayerMovement.cs │ ├── PlayerMovement.cs.meta │ ├── TerrainChunk.cs │ ├── TerrainChunk.cs.meta │ ├── TerrainGenerator.cs │ ├── TerrainGenerator.cs.meta │ ├── TerrainModifier.cs │ ├── TerrainModifier.cs.meta │ ├── TilePos.cs │ ├── TilePos.cs.meta │ ├── WaterChunk.cs │ └── WaterChunk.cs.meta ├── Skybox.mat ├── Skybox.mat.meta ├── Water.mat ├── Water.mat.meta ├── atlas-4.png ├── atlas-4.png.meta ├── background.png ├── background.png.meta ├── dirt-tile.png ├── dirt-tile.png.meta ├── leaves-tile.png ├── leaves-tile.png.meta ├── leaves-tile2.png ├── leaves-tile2.png.meta ├── sky-side.png ├── sky-side.png.meta ├── sky-top.png ├── sky-top.png.meta ├── skybox2.mat ├── skybox2.mat.meta ├── skyboxtest11@2x.png ├── skyboxtest11@2x.png.meta ├── stone-tile.png ├── stone-tile.png.meta ├── tree-wood-side.png ├── tree-wood-side.png.meta ├── water-tile.png └── water-tile.png.meta ├── LICENSE ├── Logs └── Packages-Update.log ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Cube.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Cube.prefab -------------------------------------------------------------------------------- /Assets/Cube.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Cube.prefab.meta -------------------------------------------------------------------------------- /Assets/Ground.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Ground.mat -------------------------------------------------------------------------------- /Assets/Ground.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Ground.mat.meta -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Terrain Chunk.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Prefabs/Terrain Chunk.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Terrain Chunk.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Prefabs/Terrain Chunk.prefab.meta -------------------------------------------------------------------------------- /Assets/Prefabs/Water Chunk.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Prefabs/Water Chunk.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/Water Chunk.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Prefabs/Water Chunk.prefab.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/Game.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scenes/Game.unity -------------------------------------------------------------------------------- /Assets/Scenes/Game.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scenes/Game.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Game_Profiles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scenes/Game_Profiles.meta -------------------------------------------------------------------------------- /Assets/Scenes/Game_Profiles/Post Processing Profile 1.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scenes/Game_Profiles/Post Processing Profile 1.asset -------------------------------------------------------------------------------- /Assets/Scenes/Game_Profiles/Post Processing Profile 1.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scenes/Game_Profiles/Post Processing Profile 1.asset.meta -------------------------------------------------------------------------------- /Assets/Scenes/Game_Profiles/Post Processing Profile.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scenes/Game_Profiles/Post Processing Profile.asset -------------------------------------------------------------------------------- /Assets/Scenes/Game_Profiles/Post Processing Profile.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scenes/Game_Profiles/Post Processing Profile.asset.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/Block.cs -------------------------------------------------------------------------------- /Assets/Scripts/Block.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/Block.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/CamFly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/CamFly.cs -------------------------------------------------------------------------------- /Assets/Scripts/CamFly.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/CamFly.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/FastNoise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/FastNoise.cs -------------------------------------------------------------------------------- /Assets/Scripts/FastNoise.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/FastNoise.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Inventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/Inventory.cs -------------------------------------------------------------------------------- /Assets/Scripts/Inventory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/Inventory.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/MouseLook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/MouseLook.cs -------------------------------------------------------------------------------- /Assets/Scripts/MouseLook.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/MouseLook.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/PlayerMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/PlayerMovement.cs -------------------------------------------------------------------------------- /Assets/Scripts/PlayerMovement.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/PlayerMovement.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/TerrainChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/TerrainChunk.cs -------------------------------------------------------------------------------- /Assets/Scripts/TerrainChunk.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/TerrainChunk.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/TerrainGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/TerrainGenerator.cs -------------------------------------------------------------------------------- /Assets/Scripts/TerrainGenerator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/TerrainGenerator.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/TerrainModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/TerrainModifier.cs -------------------------------------------------------------------------------- /Assets/Scripts/TerrainModifier.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/TerrainModifier.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/TilePos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/TilePos.cs -------------------------------------------------------------------------------- /Assets/Scripts/TilePos.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/TilePos.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/WaterChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/WaterChunk.cs -------------------------------------------------------------------------------- /Assets/Scripts/WaterChunk.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Scripts/WaterChunk.cs.meta -------------------------------------------------------------------------------- /Assets/Skybox.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Skybox.mat -------------------------------------------------------------------------------- /Assets/Skybox.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Skybox.mat.meta -------------------------------------------------------------------------------- /Assets/Water.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Water.mat -------------------------------------------------------------------------------- /Assets/Water.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/Water.mat.meta -------------------------------------------------------------------------------- /Assets/atlas-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/atlas-4.png -------------------------------------------------------------------------------- /Assets/atlas-4.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/atlas-4.png.meta -------------------------------------------------------------------------------- /Assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/background.png -------------------------------------------------------------------------------- /Assets/background.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/background.png.meta -------------------------------------------------------------------------------- /Assets/dirt-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/dirt-tile.png -------------------------------------------------------------------------------- /Assets/dirt-tile.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/dirt-tile.png.meta -------------------------------------------------------------------------------- /Assets/leaves-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/leaves-tile.png -------------------------------------------------------------------------------- /Assets/leaves-tile.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/leaves-tile.png.meta -------------------------------------------------------------------------------- /Assets/leaves-tile2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/leaves-tile2.png -------------------------------------------------------------------------------- /Assets/leaves-tile2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/leaves-tile2.png.meta -------------------------------------------------------------------------------- /Assets/sky-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/sky-side.png -------------------------------------------------------------------------------- /Assets/sky-side.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/sky-side.png.meta -------------------------------------------------------------------------------- /Assets/sky-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/sky-top.png -------------------------------------------------------------------------------- /Assets/sky-top.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/sky-top.png.meta -------------------------------------------------------------------------------- /Assets/skybox2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/skybox2.mat -------------------------------------------------------------------------------- /Assets/skybox2.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/skybox2.mat.meta -------------------------------------------------------------------------------- /Assets/skyboxtest11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/skyboxtest11@2x.png -------------------------------------------------------------------------------- /Assets/skyboxtest11@2x.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/skyboxtest11@2x.png.meta -------------------------------------------------------------------------------- /Assets/stone-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/stone-tile.png -------------------------------------------------------------------------------- /Assets/stone-tile.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/stone-tile.png.meta -------------------------------------------------------------------------------- /Assets/tree-wood-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/tree-wood-side.png -------------------------------------------------------------------------------- /Assets/tree-wood-side.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/tree-wood-side.png.meta -------------------------------------------------------------------------------- /Assets/water-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/water-tile.png -------------------------------------------------------------------------------- /Assets/water-tile.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Assets/water-tile.png.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/LICENSE -------------------------------------------------------------------------------- /Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samhogan/Minecraft-Unity3D/HEAD/README.md --------------------------------------------------------------------------------