작성
·
314
답변 1
0
"3D 캐릭터 모델을 만들고 three.js에서 활용하기" 섹션의 소스코드에서, 일분이 모델을 로드 후에 아래 코드를 넣어보시겠어요? 그러면 2초 후에, 일분이가 와이어프레임으로 표시 될거예요~
const ilbuniMesh = gltf.scene.children[0];
scene.add(ilbuniMesh);
// 여기부터 새로운 코드
setTimeout(() => {
ilbuniMesh.children.forEach((item) => {
if (item.isMesh) {
item.material.wireframe = true;
}
});
}, 2000);
너무 잘돼요!! 감사합니다!!