😽
React+TypeScriptなWebアプリで、R3Fのtutorial8。(統計情報の表示2)
Abstract
今回の参考はここ(R3F-Perf)。
結論
今回の成果物はココ↓
前提
- React+Typescriptの開発環境は構築済 Ubuntu22.04+VSCode+React+TypeScriptの開発環境を構築してみた。
- このスケルトンコードから始める。react-r3f-tutorial004
手順
1.プロジェクト生成 -> VSCodeで開く
めんどいから、このスケルトンコードから始める。react-r3f-tutorial004
で、下記コマンドでフォルダ名とか整備する。
フォルダリネームとか
$ BaseProject=react-r3f-tutorial006
$ NewProject=react-r3f-tutorial008
$ cd ~
$ rm -rf ${BaseProject}
$ git clone https://github.com/aaaa1597/${BaseProject}.git
$ rm -rf ${BaseProject}/.git
$ mv ${BaseProject} ${NewProject}
$ cd ${NewProject}
準備
$ npm install --save three
$ npm install --save @types/three
$ npm install --save @react-three/fiber
$ npm install --save-dev r3f-perf
App.tsx
まず全体。
App.tsx
import React, {useRef} from 'react';
import './App.css';
import { Canvas, useFrame, MeshProps } from '@react-three/fiber'
+import { Perf } from 'r3f-perf'
+import * as THREE from 'three'
-type Props = {
- position?: number[];
- name?: string;
-}
-const Box = (props: Props) => {
+const Box = (props: MeshProps) => {
- const ref = useRef<MeshProps>()
+ const ref = useRef<THREE.Mesh>(null!)
useFrame((_, delta) => {
if( !ref.current) return
ref.current.rotation.x += 1 * delta
ref.current.rotation.y += 0.5 * delta
})
return (
<mesh {...props} ref={ref}>
<boxGeometry />
<meshBasicMaterial color={0x00ff00} wireframe />
</mesh>
)
}
const App = () => {
return (
<div style={{ width: "75vw", height: "75vh" }}>
<Canvas camera={{ position: [3, 1, 2] }}>
+ <Perf position="top-right" />
<ambientLight />
<directionalLight />
<Box position={[-0.75, 0, 0]} name="A" />
<Box position={[0.75, 0, 0]} name="B" />
</Canvas>
</div>
);
}
export default App;
で実行。
出来た!!
これは簡単やった。
ポイント
1.r3f-perfをインストール
$ npm install --save-dev r3f-perf
2.r3f-perfをimport
r3f-perfをimport
import { Perf } from 'r3f-perf'
3.r3f-perfを使う。
r3f-perfをimport
<Perf position="top-right" />
簡単~!!
React+TypeScriptなWebアプリで、R3Fのtutorial7.(統計情報の表示)
Discussion