보호된 글: 행렬만으로 위치를 잡고 원하는 지점을 중심으로 회전 (in three.js)
물리 기반 렌더링(PBR) 재질의 Sheen, Clearcoating에 대한 좋은 예시
바닐라 JS의 동적 스크립트 임포팅
바닐라 JS로 어떤 라이브러리를 동적으로 포함하고 해당 라이브러리가 완전히 로딩되었을때 코드를 실행하는 방식
const url = "https://~.min.js"; const htmlMeshScript = document.createElement("script"); htmlMeshScript.type = "module"; htmlMeshScript.src = url; document.body.appendChild(htmlMeshScrip); htmlMeshScript.onload = (event) => { console.log("loaded"); };