728x90
이런것들을 해보고싶다.
1. Visual Studio Code (최신버전 받아줌)
https://code.visualstudio.com/
2. Three.js 라이브러리 다운로드
1) 그냥 다운로드 하는 방식
https://threejs.org/ => download링크 클릭
three.js : 일반적인 라이브러리
three.min.js : 압축버전
three.module.js : 모듈방식으로 개발할 수 있는 라이브러리 => 이걸 사용할 거임.
CDN 방식으로 불러오는 법?
<script type="module">
// Find the latest version by visiting https://cdn.skypack.dev/three.
import * as THREE from 'https://cdn.skypack.dev/three@<version>';
const scene = new THREE.Scene();
</script>
2) npm으로 다운로드 (node.js 먼저 설치하는건 기본)
npm install --save three
3) boilerplate 사용
요고 사용. 폴더 하나 만들어서 터미널에서 아래와 같이 쳐주자.
git clone https://github.com/aakatev/three-js-webpack.git
npm i
npm run start
728x90
'Frontend > Three.js' 카테고리의 다른 글
[Three.js] 3차원 공간구성 (scene graph) (0) | 2022.07.17 |
---|---|
[Three.js] .gltf 파일 로딩하기 (0) | 2022.07.15 |
[Three.js] Geometry - 다양한 Geometry 객체 (0) | 2022.07.14 |
[Three.js] Geometry - BoxGeometry와 WireFrameGeometry (0) | 2022.07.13 |
[Three.js] Three.js 기본개념 (0) | 2022.07.12 |