If i want to export gltf(jme mesh) How can i do

i want to export gltf by jme

You can’t.

JME can import GLTF. JME can’t export anything.

im not sure why you need it, since in 99,99% cases need just import, the only case on mind is that you are doing some model Editor.

Anyway You would need write exporter yourself in this case, because its not needed for a games to export models, only to import. (so like Paul said there is build-in import only, because export is not needed)

1 Like

Possibly exporting to .OBJ would be easier, then you can use blender to convert it.
Here’s an old thread you could use for inspiration:

1 Like

你是只有j3o文件想导出obj?

Make a jme application that:

  1. loads the j3o
  2. get the Mesh object
  3. iterate over the mesh buffers like the code in the link
  4. write output to a text file (.obj)

Load .obj with blender and export as .gltf

1 Like

That’s a good way to go

1 Like

.obj dont support animations or morph shapes or PBR material

while .gltf do. So it would be ok only if model have no animations.