I have created a boxgeometry on which I’ve added Troika text and 3D arrows
which looks like this
Then I’ve added a GlTF exporter to export the threejs scene to GLB format .But, when I export
the scene. everything is visible except the text which looks like this
this is my code
const exporter = new GLTFExporter();
exporter.parse(
this.scene,
(result) => {
this.saveArrayBuffer(result, "threejsScene.glb")
},
{
binary: true
}
)
Any solution! Any help would be greatly appreciated