├── clipmap ├── clipmap.gd ├── clipmap.gdshader ├── clipmap.tscn ├── clipmap_partition.gd └── clipmap_partition.tscn ├── collisionmap ├── collisionmap.gd └── collisionmap.tscn ├── heightmap ├── Heightmap.gd ├── heightmap.png ├── heightmap.png.import ├── normalmap.png └── normalmap.png.import ├── icon.svg ├── icon.svg.import ├── main.tscn ├── player ├── player_character.gd └── player_character.tscn └── project.godot /clipmap/clipmap.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/clipmap/clipmap.gd -------------------------------------------------------------------------------- /clipmap/clipmap.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/clipmap/clipmap.gdshader -------------------------------------------------------------------------------- /clipmap/clipmap.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/clipmap/clipmap.tscn -------------------------------------------------------------------------------- /clipmap/clipmap_partition.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/clipmap/clipmap_partition.gd -------------------------------------------------------------------------------- /clipmap/clipmap_partition.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/clipmap/clipmap_partition.tscn -------------------------------------------------------------------------------- /collisionmap/collisionmap.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/collisionmap/collisionmap.gd -------------------------------------------------------------------------------- /collisionmap/collisionmap.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/collisionmap/collisionmap.tscn -------------------------------------------------------------------------------- /heightmap/Heightmap.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/heightmap/Heightmap.gd -------------------------------------------------------------------------------- /heightmap/heightmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/heightmap/heightmap.png -------------------------------------------------------------------------------- /heightmap/heightmap.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/heightmap/heightmap.png.import -------------------------------------------------------------------------------- /heightmap/normalmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/heightmap/normalmap.png -------------------------------------------------------------------------------- /heightmap/normalmap.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/heightmap/normalmap.png.import -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/icon.svg.import -------------------------------------------------------------------------------- /main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/main.tscn -------------------------------------------------------------------------------- /player/player_character.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/player/player_character.gd -------------------------------------------------------------------------------- /player/player_character.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/player/player_character.tscn -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheGodojo/Massive-Terrain-LOD-And-Stitching-COMPLETE/HEAD/project.godot --------------------------------------------------------------------------------