├── .gitbook └── assets │ ├── Logos (1).png │ ├── Logos.png │ ├── Select.png │ ├── Untitled design (1).png │ ├── Untitled design (2).png │ ├── Untitled design.png │ ├── add-app.png │ ├── email.png │ └── ezgif-1-1a2578b1fe.gif ├── .github └── workflows │ └── create-release.yml ├── .gitignore ├── 404-gen-guide ├── about.md ├── contact.md ├── getting-started │ ├── README.md │ ├── discord-bot.md │ └── readme.md └── prompts.md ├── LICENSE ├── README.md ├── SUMMARY.md ├── download_dependencies.sh └── fourofour_3d_gen ├── __init__.py ├── blender_manifest.toml ├── gateway ├── __init__.py ├── gateway_api.py ├── gateway_routes.py └── gateway_task.py ├── ops.py ├── preferences.py ├── props.py ├── spz_loader.py ├── spz_updater.py ├── ui.py └── util ├── __init__.py ├── gaussian_splatting.py ├── gs_nodetree.blend ├── mesh_conversion.py ├── ply.py └── positioning.py /.gitbook/assets/Logos (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/.gitbook/assets/Logos (1).png -------------------------------------------------------------------------------- /.gitbook/assets/Logos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/.gitbook/assets/Logos.png -------------------------------------------------------------------------------- /.gitbook/assets/Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/.gitbook/assets/Select.png -------------------------------------------------------------------------------- /.gitbook/assets/Untitled design (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/.gitbook/assets/Untitled design (1).png -------------------------------------------------------------------------------- /.gitbook/assets/Untitled design (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/.gitbook/assets/Untitled design (2).png -------------------------------------------------------------------------------- /.gitbook/assets/Untitled design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/.gitbook/assets/Untitled design.png -------------------------------------------------------------------------------- /.gitbook/assets/add-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/.gitbook/assets/add-app.png -------------------------------------------------------------------------------- /.gitbook/assets/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/.gitbook/assets/email.png -------------------------------------------------------------------------------- /.gitbook/assets/ezgif-1-1a2578b1fe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/.gitbook/assets/ezgif-1-1a2578b1fe.gif -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /404-gen-guide/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/404-gen-guide/about.md -------------------------------------------------------------------------------- /404-gen-guide/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/404-gen-guide/contact.md -------------------------------------------------------------------------------- /404-gen-guide/getting-started/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/404-gen-guide/getting-started/README.md -------------------------------------------------------------------------------- /404-gen-guide/getting-started/discord-bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/404-gen-guide/getting-started/discord-bot.md -------------------------------------------------------------------------------- /404-gen-guide/getting-started/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/404-gen-guide/getting-started/readme.md -------------------------------------------------------------------------------- /404-gen-guide/prompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/404-gen-guide/prompts.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /download_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/download_dependencies.sh -------------------------------------------------------------------------------- /fourofour_3d_gen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/fourofour_3d_gen/__init__.py -------------------------------------------------------------------------------- /fourofour_3d_gen/blender_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/fourofour_3d_gen/blender_manifest.toml -------------------------------------------------------------------------------- /fourofour_3d_gen/gateway/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fourofour_3d_gen/gateway/gateway_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/fourofour_3d_gen/gateway/gateway_api.py -------------------------------------------------------------------------------- /fourofour_3d_gen/gateway/gateway_routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/fourofour_3d_gen/gateway/gateway_routes.py -------------------------------------------------------------------------------- /fourofour_3d_gen/gateway/gateway_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/fourofour_3d_gen/gateway/gateway_task.py -------------------------------------------------------------------------------- /fourofour_3d_gen/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/fourofour_3d_gen/ops.py -------------------------------------------------------------------------------- /fourofour_3d_gen/preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/fourofour_3d_gen/preferences.py -------------------------------------------------------------------------------- /fourofour_3d_gen/props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/fourofour_3d_gen/props.py -------------------------------------------------------------------------------- /fourofour_3d_gen/spz_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/fourofour_3d_gen/spz_loader.py -------------------------------------------------------------------------------- /fourofour_3d_gen/spz_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/fourofour_3d_gen/spz_updater.py -------------------------------------------------------------------------------- /fourofour_3d_gen/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/fourofour_3d_gen/ui.py -------------------------------------------------------------------------------- /fourofour_3d_gen/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fourofour_3d_gen/util/gaussian_splatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/fourofour_3d_gen/util/gaussian_splatting.py -------------------------------------------------------------------------------- /fourofour_3d_gen/util/gs_nodetree.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/fourofour_3d_gen/util/gs_nodetree.blend -------------------------------------------------------------------------------- /fourofour_3d_gen/util/mesh_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/fourofour_3d_gen/util/mesh_conversion.py -------------------------------------------------------------------------------- /fourofour_3d_gen/util/ply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/fourofour_3d_gen/util/ply.py -------------------------------------------------------------------------------- /fourofour_3d_gen/util/positioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/404-Repo/three-gen-blender-plugin/HEAD/fourofour_3d_gen/util/positioning.py --------------------------------------------------------------------------------