GithubHelp home page GithubHelp logo

Comments (5)

Code47X avatar Code47X commented on July 21, 2024 3

Did it generate a GLTFResult type for you? This type is used to typecast useGLTF().

image

from gltfjsx.

myznikovgleb avatar myznikovgleb commented on July 21, 2024 1

@SakoMe

It seems like you've missed to add the type GLTFResult provided with command

npx gltfjsx [model.gltf] -t

I've tried to reproduce scenario when command above fails with exported from Blender 3.4 default model (cube). But everything seems to work fine. My result

/*
Auto-generated by: https://github.com/pmndrs/gltfjsx
Command: npx [email protected] box.gltf -t 
*/

import * as THREE from 'three'
import React, { useRef } from 'react'
import { useGLTF } from '@react-three/drei'
import { GLTF } from 'three-stdlib'

type GLTFResult = GLTF & {
  nodes: {
    Cube: THREE.Mesh
  }
  materials: {}
}

export function Model(props: JSX.IntrinsicElements['group']) {
  const { nodes, materials } = useGLTF('/box.gltf') as GLTFResult
  return (
    <group {...props} dispose={null}>
      <mesh geometry={nodes.Cube.geometry} material={nodes.Cube.material} />
    </group>
  )
}

useGLTF.preload('/box.gltf')

NB
You can also try to test your model with web version. Just do not forget to enable types option

from gltfjsx.

utiq avatar utiq commented on July 21, 2024

@Code47X where did you export GLTF from?

from gltfjsx.

alvindrakes avatar alvindrakes commented on July 21, 2024

@utiq @Code47X Hi, May I know where does GLTF comes from?

Auto imports suggest it's from the examples folder.

from gltfjsx.

Code47X avatar Code47X commented on July 21, 2024

It looks like thats where it was imported from.

Screenshot 2023-03-21 at 1 22 45 PM

from gltfjsx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.