728x90
반응형
npm i stats.js
프레임을 확인할 수 있는 stats.js라는 라이브러리가 있다.
import Stats from 'stats.js';
...
// Stats
const stats = new Stats();
document.body.append(stats.domElement);
function draw() {
stats.update();
mesh.rotation.y = time;
renderer.render(scene, camera);
renderer.setAnimationLoop(draw);
}
stats 라이브러리를 import하고, Stats domElement를 추가한 후 매 draw마다 stats을 update하여 FPS를 표시할 수 있다.
728x90
반응형
'개발 · 컴퓨터공학' 카테고리의 다른 글
three.js transform (0) | 2022.09.01 |
---|---|
three.js GUI 그리기 (0) | 2022.08.31 |
three.js 축과 격자 (0) | 2022.08.29 |
three.js 라이브러리 gsap (0) | 2022.08.28 |
three.js 안개 만들기 (0) | 2022.08.27 |