Is there a way to include a hyperlink in the object loaded using gltf loader with the given code snippet below?
var loader = new THREE.GLTFLoader();
var mesh;
loader.load('globe.glb', function(gltf){
console.log(gltf);
mesh = gltf.scene;
console.log(mesh.children[0]);
mesh.children[0].material = new THREE.MeshLambertMaterial();
mesh.position.z = z;
mesh.position.x = x
if(x!=0){
gltf.scene.scale.set(0.5,0.5,0.5)
}
if(y==1){
mesh.position.y = x
}
if(y==2){
mesh.position.y = -1*x
}
scene.add( mesh );
});