How Add Collider on Complex Glb / Gltf Modal using Rapier.js

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

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

  • @helpmikey
    @helpmikey 3 หลายเดือนก่อน +1

    nice. do you have sample tutorial or file ?

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

      Check comment section I already mentioned

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

    import { OrbitControls, useAnimations, useGLTF } from "@react-three/drei";
    import { Physics, RigidBody } from "@react-three/rapier";
    import { useEffect, useRef } from "react";
    import { Canvas } from "react-three-fiber";
    const Scene = () => {
    const { scene, animations } = useGLTF('./hallwb.glb');
    const group = useRef();
    const { actions } = useAnimations(animations, group);
    return (



    );
    };
    const App = () => {
    return (


    );
    };
    export default App;