바닐라 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");
};

블렌더 단축키

하나의 메시로 합치기(Join)

^J

선택된 것과 비슷한 것들 선택하기 메뉴 표시

~G

정점에 대한 베벨링

~^B or ^BV

다시 실행하기

~R