본문 바로가기
three js

[three js] npm 기반 불러오기

by 상똥프 2023. 9. 5.

[1. 준비사항]

1. node.js 

- npm으로 three js를 설치해야한다

2. visual studio code

- 폴더명: threeTutorial

- main.js

- index.html (기본 코드: 접은 글)

더보기
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="utf-8">
		<title>My first three.js app</title>
		<style>
			body { margin: 0; }
		</style>
	</head>
	<body>
		<script type="module" src="/main.js"></script>
	</body>
</html>

 

[2. three js 설치]

1. threeTutorial에서 터미널을 연다

2. 터미널에 npm install --save three  입력

3. 터미널에 npm install --save-dev vite  입력

4. 위 두가지 설치가 완료되면 node_modules/  package.json 이 설치된다.

5. 터미널에 npx vite 입력

6. 설치가 완료되면 아래와 같이 뜨고, http://localhost:5173 는 작품이 실행되는 페이지로 ctrl+click으로 열 수 있다.

 

[3. main.js 기본]

1. three js를 사용하기 위해 모든 기능을 불러온다

- 명칭은 THREE라고 하겠음

// main.js

import * as THREE from 'three';

 

2. 장면 생성

- 명칭은 scene이라고 하겠음

// main.js

// 장면
const scene = new THREE.Scene();

 

<참고 페이지>

Installation – three.js docs (threejs.org)