I try to use threeGLTFLoader to load gltf ,problem with the material,the model is a man’s head but now i could see the back here is the code:
var threeGLTFLoader = new THREE.GLTFLoader();
var objPositions;
threeGLTFLoader.load("../resources/untitled.gltf", function (gltf) {
model = gltf.scene;
model.name = "man";
model.scale.set(300, 300, 300);
root.matrixAutoUpdate = false;
root.updateMatrix();
root.add(model);
});

The link of 3D model

GLTFLoaderfrom the officialthreenpm package or from a third-party package? - Mugen87