react-three-offscreen icon indicating copy to clipboard operation
react-three-offscreen copied to clipboard

📺 Offscreen worker canvas for react-three-fiber

Results 16 react-three-offscreen issues
Sort by recently updated
recently updated
newest added

Could an example be provided where the Scene component has to receive props (for example for the mesh position)? How does the worker.jsx file to pass the props to the...

I tried the offscreen canvas with nextjs 14 but it doesn't load the model. Tried it first in my own project and all I see is the fallback. Then checked...

should be fixed. _Originally posted by @drcmda in https://github.com/pmndrs/react-three-offscreen/issues/9#issuecomment-1537511566_

First of all thanks @drcmda for this amazing package. I tried integrating the example on a Vite based project and it seems like CanvasOffscreen always use fallback scene. Using the...

I'd like to be able to handle `onmessage` in the worker. The `react-three-offscreen` `render` function already handles `onmessage`. I'd like to be able to hook into this. (My use case...

I am experiencing an issue with the Canvas where it randomly flickers. When I use the Canvas from the @react-three/fiberX library (without web workers), my model (which is 2 MB...

If you are open to it, I will go ahead and create a pull request-- I think it should be relatively straight forward after looking through the code in Canvas.tsx...

I got >Uncaught ReferenceError: document is not defined on production, but everything is ok locally **vite.config.ts** ```ts import eslintPlugin from "@nabla/vite-plugin-eslint"; import react from "@vitejs/plugin-react"; import autoprefixer from "autoprefixer"; import...

Hi, if you set the dpr prop of Canvas - e.g. `dpr={[1, 2]}` - it throws the following error: ``` Failed to set the 'width' property on 'OffscreenCanvas': Value is...

The canvas currently only resizes when the complete window resizes, not when the canvas itself changes size. This works for the example, in which the canvas is a fullscreen background,...