├── DunGenTut ├── dungeon generation │ ├── DunMesh.gd │ ├── DungeonTiles.tres │ ├── dun_gen.gd │ ├── dun_gen.tscn │ ├── dun_mesh.tscn │ └── node_3d.tscn ├── icon.svg ├── icon.svg.import ├── imports │ ├── DunCell.gd │ ├── DunCell.glb │ ├── DunCell.glb.import │ ├── DunCell.tscn │ ├── DunCell_TexturesCom_Cement_1x1_512_albedo.png │ ├── DunCell_TexturesCom_Cement_1x1_512_albedo.png.import │ ├── DunCell_TexturesCom_Cement_1x1_512_normals.png │ ├── DunCell_TexturesCom_Cement_1x1_512_normals.png.import │ ├── DunCell_TexturesCom_MixedMedievalBricks_1K_albedo.png │ ├── DunCell_TexturesCom_MixedMedievalBricks_1K_albedo.png.import │ ├── DunCell_TexturesCom_MixedMedievalBricks_1K_normals.png │ ├── DunCell_TexturesCom_MixedMedievalBricks_1K_normals.png.import │ ├── DunCell_TexturesCom_Pavement_CobblestoneStreet5_2x2_1K_albedo.png │ ├── DunCell_TexturesCom_Pavement_CobblestoneStreet5_2x2_1K_albedo.png.import │ ├── DunCell_TexturesCom_Pavement_CobblestoneStreet5_2x2_1K_normals.png │ ├── DunCell_TexturesCom_Pavement_CobblestoneStreet5_2x2_1K_normals.png.import │ ├── ceiling.tres │ ├── dun_cell.tscn │ ├── floor.tres │ └── walls.tres ├── project.godot └── world_environment.tscn ├── README.md └── dun_mesh.cs /DunGenTut/dungeon generation/DunMesh.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/dungeon generation/DunMesh.gd -------------------------------------------------------------------------------- /DunGenTut/dungeon generation/DungeonTiles.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/dungeon generation/DungeonTiles.tres -------------------------------------------------------------------------------- /DunGenTut/dungeon generation/dun_gen.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/dungeon generation/dun_gen.gd -------------------------------------------------------------------------------- /DunGenTut/dungeon generation/dun_gen.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/dungeon generation/dun_gen.tscn -------------------------------------------------------------------------------- /DunGenTut/dungeon generation/dun_mesh.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/dungeon generation/dun_mesh.tscn -------------------------------------------------------------------------------- /DunGenTut/dungeon generation/node_3d.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/dungeon generation/node_3d.tscn -------------------------------------------------------------------------------- /DunGenTut/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/icon.svg -------------------------------------------------------------------------------- /DunGenTut/icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/icon.svg.import -------------------------------------------------------------------------------- /DunGenTut/imports/DunCell.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/DunCell.gd -------------------------------------------------------------------------------- /DunGenTut/imports/DunCell.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/DunCell.glb -------------------------------------------------------------------------------- /DunGenTut/imports/DunCell.glb.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/DunCell.glb.import -------------------------------------------------------------------------------- /DunGenTut/imports/DunCell.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/DunCell.tscn -------------------------------------------------------------------------------- /DunGenTut/imports/DunCell_TexturesCom_Cement_1x1_512_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/DunCell_TexturesCom_Cement_1x1_512_albedo.png -------------------------------------------------------------------------------- /DunGenTut/imports/DunCell_TexturesCom_Cement_1x1_512_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/DunCell_TexturesCom_Cement_1x1_512_albedo.png.import -------------------------------------------------------------------------------- /DunGenTut/imports/DunCell_TexturesCom_Cement_1x1_512_normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/DunCell_TexturesCom_Cement_1x1_512_normals.png -------------------------------------------------------------------------------- /DunGenTut/imports/DunCell_TexturesCom_Cement_1x1_512_normals.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/DunCell_TexturesCom_Cement_1x1_512_normals.png.import -------------------------------------------------------------------------------- /DunGenTut/imports/DunCell_TexturesCom_MixedMedievalBricks_1K_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/DunCell_TexturesCom_MixedMedievalBricks_1K_albedo.png -------------------------------------------------------------------------------- /DunGenTut/imports/DunCell_TexturesCom_MixedMedievalBricks_1K_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/DunCell_TexturesCom_MixedMedievalBricks_1K_albedo.png.import -------------------------------------------------------------------------------- /DunGenTut/imports/DunCell_TexturesCom_MixedMedievalBricks_1K_normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/DunCell_TexturesCom_MixedMedievalBricks_1K_normals.png -------------------------------------------------------------------------------- /DunGenTut/imports/DunCell_TexturesCom_MixedMedievalBricks_1K_normals.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/DunCell_TexturesCom_MixedMedievalBricks_1K_normals.png.import -------------------------------------------------------------------------------- /DunGenTut/imports/DunCell_TexturesCom_Pavement_CobblestoneStreet5_2x2_1K_albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/DunCell_TexturesCom_Pavement_CobblestoneStreet5_2x2_1K_albedo.png -------------------------------------------------------------------------------- /DunGenTut/imports/DunCell_TexturesCom_Pavement_CobblestoneStreet5_2x2_1K_albedo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/DunCell_TexturesCom_Pavement_CobblestoneStreet5_2x2_1K_albedo.png.import -------------------------------------------------------------------------------- /DunGenTut/imports/DunCell_TexturesCom_Pavement_CobblestoneStreet5_2x2_1K_normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/DunCell_TexturesCom_Pavement_CobblestoneStreet5_2x2_1K_normals.png -------------------------------------------------------------------------------- /DunGenTut/imports/DunCell_TexturesCom_Pavement_CobblestoneStreet5_2x2_1K_normals.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/DunCell_TexturesCom_Pavement_CobblestoneStreet5_2x2_1K_normals.png.import -------------------------------------------------------------------------------- /DunGenTut/imports/ceiling.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/ceiling.tres -------------------------------------------------------------------------------- /DunGenTut/imports/dun_cell.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/dun_cell.tscn -------------------------------------------------------------------------------- /DunGenTut/imports/floor.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/floor.tres -------------------------------------------------------------------------------- /DunGenTut/imports/walls.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/imports/walls.tres -------------------------------------------------------------------------------- /DunGenTut/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/project.godot -------------------------------------------------------------------------------- /DunGenTut/world_environment.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/DunGenTut/world_environment.tscn -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/README.md -------------------------------------------------------------------------------- /dun_mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quwatz/Godot-4-Dungeon-Generator/HEAD/dun_mesh.cs --------------------------------------------------------------------------------