Kris Baumgarter

Results 30 issues of Kris Baumgarter

## Problem Working on the editor, we came across a need to suspend all R3F updates, but this was very hard to do in v8 and required manually manipulating internal...

request for comments

When creating an asset pipeline there are often situations where I need to transform data, such as compressing individual textures, without it being embedded in a gltf or glb. Instead...

feature
package:cli

If you know, you know.

In all cases I tested, resizing smaller than the defaultSize produced an error. ```js const bitWorld = createWorld(); // Turns out default is 100000 setDefaultSize(5000); // Errors ``` Likewise if...

We recently added the three `Timer` class by Mugen. After this @vanruesc made us aware that he has a modified version inside of pmndrs/postprocessing that can be [found here](https://github.com/pmndrs/postprocessing/blob/92b0cd7b6a69186e5ea7be3408ede9d87de50f8a/src/utils/Timer.ts). I'm...

enhancement

I was looking at replicating some of tests for my own library and building new ones and I found that the tests between libraries are not apples to apples. What...

I get the following error when attempting to start up the editor: ![image](https://user-images.githubusercontent.com/7064954/208714905-3a419a4f-03ef-47f1-996e-a41c9d366972.png) My `vite.config`: ```js import { defineConfig } from "vite"; import react from "@vitejs/plugin-react-swc"; import { r3f }...

This issue is for detailing problems editing in the R3F `ClickAndHover` example. I am picking this example because it is so basic. I am currently working off: https://github.com/pmndrs/react-three-editor/pull/39 1. ~~The...

We want to refactor to create a core package along with packages targeting specific renderers such as `react-three-fiber`. From user level, a single renderer package can target multiple versions automatically...

Edit mode is meant to have the app without any loops executing so that objects can be interacted with. The current implementation of this replaces `useFrame` and `useUpdate` with an...