开发者问题收集

@react-three/drei 的东西无法与 next.js 一起使用

2021-04-16
2591

我无法使用 drei 材料和其他东西,例如 MeshWobbleMaterial 或 MeshDistortMaterial 甚至 ContactShadows,我总是收到错误,例如:

react-three-fiber.esm.js:1383 Uncaught TypeError:无法读取 null 的属性“getState” at useFrame (react-three-fiber.esm.js:1383) at MeshDistortMaterial.js:72 (在 MeshDistortMaterial 的情况下)

它引用的这个 null 是 react-three-fiber 上 useFrame 模块内的“useContext(context)”。 我认为这与我也在使用 next 版本 10.1.3 有关。

这是完整代码:

import { useRef, useState, useMemo } from 'react'
import { Canvas } from 'react-three-fiber'
import { Box, MeshDistortMaterial } from '@react-three/drei'
import * as THREE from 'three'
import MyCamera from '../three/MyCamera'

//HERES WHERE THE MATERIAL IS USED
const MyBox = function (props) {
    const mesh = useRef()
  
    const [hovered, setHover] = useState(false)
    const [active, setActive] = useState(false)
  
    return (
      <Box
        args={[1, 1, 1]}
        {...props}
        ref={mesh}
        scale={active ? [6, 6, 6] : [5, 5, 5]}
        onClick={() => setActive(!active)}
        onPointerOver={() => setHover(true)}
        onPointerOut={() => setHover(false)}
        castShadow
      >
      
        <MeshDistortMaterial
          attach="material"
          distort={1} // Strength, 0 disables the effect (default=1)
          speed={10} // Speed (default=1)
        />

      </Box>
    )
}

//HERES JUST THE CANVAS STUFF
export default function Main() { 

  const dirLight = useMemo(()=>{
  
    const light = new THREE.DirectionalLight('white');
    light.castShadow=true;
    //Set up shadow properties for the light
    light.shadow.mapSize.width = 10240 // default
    light.shadow.mapSize.height = 10240 // default
    light.shadow.camera.near = 0.1 // default
    light.shadow.camera.far = 5000 // default
    light.shadow.camera.top = -100 // default
    light.shadow.camera.right = 100 // default
    light.shadow.camera.left = -100 // default
    light.shadow.camera.bottom = 100 // default
    return light
  
  },[])

  return (
    <div className="canvasContainer">
    <Canvas 
      linear = "true"
      frameloop="demand" 
      shadows = "true"
      shadowMap
    >
      
      <MyCamera position={[0, 0, 30]} infLimit={-1000} supLimit ={0} />
      
      <ambientLight intensity={0.2}/>

      <primitive object={dirLight} position={[30, 0, 30]} />
      <primitive object={dirLight.target} position={[0, 0, 0]}  />
      
      <mesh receiveShadow position={[0,0,-2]}>
        <planeBufferGeometry attach="geometry" args={[1000, 1000]} />
        <meshStandardMaterial attach="material" color="gray" />
      </mesh>
      
      <MyBox position={[8,0,0]}/>

    </Canvas>
    </div>
  )
}

有办法解决吗?

我知道使用 next 需要安装 next-transpile-modules 并创建 next 配置文件。我这样做了,这是我的 next.config.js

const withTM = require('next-transpile-modules')(['three', '@react-three/drei'])

module.exports = withTM()

非常感谢您的帮助,使用 next.js 排除此问题非常困难。

2个回答

您是否尝试在 Canvas 的子级中设置 useMemo?

我猜您在场景上下文之外实例化了 DirectionalLight。 这可能会导致此错误。

dagatsoin
2021-04-22

需要澄清的是,我走在正确的道路上,但一些软件包导致这个错误发生,经过一段时间仍无法解决这个问题,我卸载并安装了所有依赖项,其中很多在这段时间内都进行了更新,然后它就可以正常工作了。

Daniel Guedes
2021-07-14