You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm interested in using react-three-fiber and react-three-drei libraries to create 3D and VR experiences in my React Native project built with the React Native CLI. I've noticed that these libraries are commonly used in web-based React applications and Expo projects, but I'm wondering if it's possible to use them with a non-Expo React Native project created using the React Native CLI.
Specifically, I'd like to know:
Is it feasible to integrate react-three-fiber and react-three-drei into a React Native project that's set up using the React Native CLI?
What are the steps and considerations I need to keep in mind when setting up react-three-fiber and react-three-drei in a non-Expo React Native project?
Are there any limitations or challenges that I should be aware of when using these libraries in a non-Expo React Native environment?
How do I manage native modules and linking when integrating Three.js-related libraries in a non-Expo React Native project?
I've seen discussions about using these libraries with Expo and web-based React applications, but I'm specifically interested in their compatibility with non-Expo React Native projects. Any insights, advice, or guidance on this topic would be greatly appreciated.
Thank you in advance for your help!
The text was updated successfully, but these errors were encountered:
Have you read the react-native installation instructions? It covers both Expo and RN CLI setup, the latter needs further setup to facilitate expo modules which is otherwise standalone. This is for expo-gl which we use to implement an OpenGL rendering context and surface.
Some challenges atm regardless of method is that react-native doesn't implement many low-level APIs that are critical to graphics APIs (namely arraybuffer, blob, bitmaps -- #1972), so you may need to patch react-native or parts of the JS ecosystem.
I'm interested in using
react-three-fiber
andreact-three-drei
libraries to create 3D and VR experiences in my React Native project built with the React Native CLI. I've noticed that these libraries are commonly used in web-based React applications and Expo projects, but I'm wondering if it's possible to use them with a non-Expo React Native project created using the React Native CLI.Specifically, I'd like to know:
react-three-fiber
andreact-three-drei
into a React Native project that's set up using the React Native CLI?react-three-fiber
andreact-three-drei
in a non-Expo React Native project?Thank you in advance for your help!
The text was updated successfully, but these errors were encountered: