├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── environments │ ├── shaded.tres │ └── unshaded.tres └── graphics │ └── tools │ ├── cursors │ ├── depth.png │ └── depth.png.import │ ├── depth.png │ └── depth.png.import ├── export_presets.cfg ├── project.godot └── src └── Extensions └── Voxelorama ├── ExtensionsApi.gd ├── ExtensionsApi.gd.uid ├── Tools ├── CanvasDepth.gd ├── CanvasDepth.gd.uid ├── CanvasDepth.tscn ├── Depth.gd ├── Depth.gd.uid └── Depth.tscn ├── VoxelArtGen.gd ├── VoxelArtGen.gd.uid ├── Voxelorama.gd ├── Voxelorama.gd.uid ├── Voxelorama.tscn ├── VoxeloramaPreview.tscn ├── axes.gd ├── axes.gd.uid └── extension.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/README.md -------------------------------------------------------------------------------- /assets/environments/shaded.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/assets/environments/shaded.tres -------------------------------------------------------------------------------- /assets/environments/unshaded.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/assets/environments/unshaded.tres -------------------------------------------------------------------------------- /assets/graphics/tools/cursors/depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/assets/graphics/tools/cursors/depth.png -------------------------------------------------------------------------------- /assets/graphics/tools/cursors/depth.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/assets/graphics/tools/cursors/depth.png.import -------------------------------------------------------------------------------- /assets/graphics/tools/depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/assets/graphics/tools/depth.png -------------------------------------------------------------------------------- /assets/graphics/tools/depth.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/assets/graphics/tools/depth.png.import -------------------------------------------------------------------------------- /export_presets.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/export_presets.cfg -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/project.godot -------------------------------------------------------------------------------- /src/Extensions/Voxelorama/ExtensionsApi.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/src/Extensions/Voxelorama/ExtensionsApi.gd -------------------------------------------------------------------------------- /src/Extensions/Voxelorama/ExtensionsApi.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cpekilvxrpi55 2 | -------------------------------------------------------------------------------- /src/Extensions/Voxelorama/Tools/CanvasDepth.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/src/Extensions/Voxelorama/Tools/CanvasDepth.gd -------------------------------------------------------------------------------- /src/Extensions/Voxelorama/Tools/CanvasDepth.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b0cltl7w22mnk 2 | -------------------------------------------------------------------------------- /src/Extensions/Voxelorama/Tools/CanvasDepth.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/src/Extensions/Voxelorama/Tools/CanvasDepth.tscn -------------------------------------------------------------------------------- /src/Extensions/Voxelorama/Tools/Depth.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/src/Extensions/Voxelorama/Tools/Depth.gd -------------------------------------------------------------------------------- /src/Extensions/Voxelorama/Tools/Depth.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cjanl7b7c5ae 2 | -------------------------------------------------------------------------------- /src/Extensions/Voxelorama/Tools/Depth.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/src/Extensions/Voxelorama/Tools/Depth.tscn -------------------------------------------------------------------------------- /src/Extensions/Voxelorama/VoxelArtGen.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/src/Extensions/Voxelorama/VoxelArtGen.gd -------------------------------------------------------------------------------- /src/Extensions/Voxelorama/VoxelArtGen.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b0a24vvlvhu38 2 | -------------------------------------------------------------------------------- /src/Extensions/Voxelorama/Voxelorama.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/src/Extensions/Voxelorama/Voxelorama.gd -------------------------------------------------------------------------------- /src/Extensions/Voxelorama/Voxelorama.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bushs4ilvvrmj 2 | -------------------------------------------------------------------------------- /src/Extensions/Voxelorama/Voxelorama.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/src/Extensions/Voxelorama/Voxelorama.tscn -------------------------------------------------------------------------------- /src/Extensions/Voxelorama/VoxeloramaPreview.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/src/Extensions/Voxelorama/VoxeloramaPreview.tscn -------------------------------------------------------------------------------- /src/Extensions/Voxelorama/axes.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/src/Extensions/Voxelorama/axes.gd -------------------------------------------------------------------------------- /src/Extensions/Voxelorama/axes.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dxlakbeg2a6h3 2 | -------------------------------------------------------------------------------- /src/Extensions/Voxelorama/extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Orama-Interactive/VoxeloramaExtension/HEAD/src/Extensions/Voxelorama/extension.json --------------------------------------------------------------------------------