ขนาดวิดีโอ: 1280 X 720853 X 480640 X 360
แสดงแผงควบคุมโปรแกรมเล่น
เล่นอัตโนมัติ
เล่นใหม่
// src/ModelViewer.jsimport React from 'react';import { Canvas } from '@react-three/fiber';import { GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader';import { Suspense } from 'react';import { Html, useGLTF, useProgress } from '@react-three/drei';// please correct your modal pathconst Model = () => { const gltf = useGLTF('/hall.glb'); return ;};const Loading = () => { const { progress } = useProgress(); return Loading {progress} %;};const ModelViewer = () => { return ( );};export default ModelViewer;
// src/ModelViewer.js
import React from 'react';
import { Canvas } from '@react-three/fiber';
import { GLTFLoader } from 'three/examples/jsm/loaders/GLTFLoader';
import { Suspense } from 'react';
import { Html, useGLTF, useProgress } from '@react-three/drei';
// please correct your modal path
const Model = () => {
const gltf = useGLTF('/hall.glb');
return ;
};
const Loading = () => {
const { progress } = useProgress();
return Loading {progress} %;
};
const ModelViewer = () => {
return (
);
};
export default ModelViewer;