개발 · 컴퓨터공학 / / 2022. 8. 30. 15:53

three.js 프레임 확인하기

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
  • 네이버 블로그 공유
  • 네이버 밴드 공유
  • 페이스북 공유
  • 카카오스토리 공유