Cody Bennett
                                            Cody Bennett
                                        
                                    Had to revert #2268 in 8.0.24 due to race conditions between useLayoutEffect/useEffect and the reconciler.
Merged a fix into #2465, this can be expected to be released in the next v9 candidate.
I don't think we can change defaults for lighting OOTB, problems are detailed in the linked issue. That might be a consideration for #2299 but the issue of `decay` not...
My general concern with short prop names is how they describe themselves -- linear, flat, legacy, etc. don't inform me that I'm working with color. I think this makes for...
If you must have a canvas that plays well with CSS transform/rapid DOM resizing, you can try creating a canvas with `render` and measuring its parent container, but prefer to...
Try following the instructions 1-1 (only manually install `expo-gl`, my suspicion is that isn't linking correctly). The only difference with the bare expo project is that it will link everything...
By manually installing expo-gl, I mean the instructions but where you go `expo install expo-gl`. That will install and link expo-gl and its dependencies. The second error I think is...
Taking a look, I see that `install-expo-modules` won't ensure that you have a compatible react-native version which for [SDK 43-44](https://docs.expo.dev/versions/latest/#each-expo-sdk-version-depends-on-a) is `0.64.3`. This is likely what's contributing to the first...
AFAIK expo only tests against those listed versions, but it wouldn't be a surprise if things were to silently break outside of that scope. To clarify, this error is coming...
I'm able to get this running by explicitly adding `@latest` to `install-expo-modules`: ```bash npx react-native init MyApp npx install-expo-modules@latest expo install expo-gl expo-gl-cpp yarn add three @react-three/fiber react ``` Can...