Blend vs gltf file - what's better?
Asked Answered
P

2

1

I used to export 3D models to gltf file for usage within Godot engine. Since Godot exporter stopped being updated I had to create some Python scripts to get file ready for Godot.

I realized that blend file works pretty good "out of box", so I'm thinking about using it primarily. My questions would be how clean is it? Will parts of blend file I'm not using (brushes, images or actions without users) be included into final build?

Does that affect loading time or build size?

Phyliciaphylis answered 8/8, 2023 at 17:48 Comment(0)
F
0

This is a good question and I'd also like an answer to it.

Fatten answered 28/11, 2023 at 17:18 Comment(0)
J
0

Phyliciaphylis I realized that blend file works pretty good "out of box"

Everything is described in the documentation — it is better to use glTF:

  • glTF 2.0 (recommended). Godot has full support for both text (.gltf) and binary (.glb) formats.
  • .blend (Blender). This works by calling Blender to export to glTF in a transparent manner (requires Blender to be installed).

By running glTF export from Blender, you can control this process.

Jadda answered 28/11, 2023 at 18:11 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.