How to use Loader to Load 3D Modal in R3f React js with Threejs

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ธ.ค. 2024

ความคิดเห็น • 1

  • @paradise_hope
    @paradise_hope  6 หลายเดือนก่อน

    // 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;