如何将 react-three-fiber 连接到 mobx

How to connect react-three-fiber to mobx

如何将 react-three-fiber 连接到 mobx?

我有这个组件。我该如何连接?

export default function Player(props) {
    const mesh = useRef()

    useFrame((a) => {

    });

    return (
        <mesh>
            <boxBufferGeometry args={[1, 1, 1]} />
            <meshStandardMaterial color={'orange'} />
        </mesh>
    )
}

你试过用observer包裹它吗? 如果这不起作用,您可以使用本地状态并通过 reaction 回调进行设置。