From c1cdc20c7f025bd57141552eb394aff3438fc316 Mon Sep 17 00:00:00 2001 From: wsor4035 <24964441+wsor4035@users.noreply.github.com> Date: Sat, 4 Jan 2025 23:00:54 -0500 Subject: [PATCH] add models dir with stub page about formats and move blockbench into it (#128) * add models dir with stub page about formats and move blockbench into it * stuff * period --- content/models/_index.md | 37 +++++++++++++++++++ .../blockbench.md} | 2 + 2 files changed, 39 insertions(+) create mode 100644 content/models/_index.md rename content/{using-blockbench.md => models/blockbench.md} (99%) diff --git a/content/models/_index.md b/content/models/_index.md new file mode 100644 index 0000000..1fc94ae --- /dev/null +++ b/content/models/_index.md @@ -0,0 +1,37 @@ +--- +title: Models +bookCollapseSection: true +--- + +# Models + +Luanti supports a few different model formats. + +### `.obj` Format + +Useful for static models, doesn't not support animation. + +### `.b3d` Format + +Orginally from the Blitz3D Engine, this format is widespread due to its animation support. You will need [this](https://github.com/GreenXenith/io_scene_b3d) extension to export models from blender. It is recommended that you keep the source .blend file due to importing not being supported in the extension. Using gltf/glb is prefered if you don't mind not supporting older 5.x releases. + +### `.x` Format + +Alternative to b3d that supports animations. Unless you have a specific reason, should use gltf/glb or b3d. + +### `.gltf / .glb` Format + +Modern animation model support, added in release 5.10. Using this format means you can't (easily) support versions before 5.10. See https://forum.luanti.org/viewtopic.php?t=31133 regarding exporting from blender at this time. + +### Node Boxes Format + +{{< notice note >}} +This Format is only supported for nodes. +{{< /notice >}} + +See https://api.luanti.org/nodes/#node-boxes. + +## Editors + +* [BlockBench](/models/blockbench) +* [Blender](https://wiki.luanti.org/Using_Blender) diff --git a/content/using-blockbench.md b/content/models/blockbench.md similarity index 99% rename from content/using-blockbench.md rename to content/models/blockbench.md index c4dd77d..cdf5092 100644 --- a/content/using-blockbench.md +++ b/content/models/blockbench.md @@ -1,5 +1,7 @@ --- title: Using Blockbench +aliases: +- /using-blockbench --- # Using Blockbench