Is react-xr applicable for React Native projects? #156
-
Hi, At Customuse we're working on a React Native mobile app that allows configuring 3d outfits using React Three Fiber and Pixi. Actually we have two implementations - using imperative Expo Three approach and using declarative Expo Three Fiber one. Each outfit is represented as a gltf model with customisable texture. The next step we are trying to do is to enable AR for viewing outfits. Could you please tell me will r3f be extended to both Web and Mobile platforms? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
R3F v8 brings support for react-native, but native AR features are very limited on mobile devices (not implemented; also see caniuse). Unfortunately, I don't believe Apple intends to implement this any time soon until they can better integrate the spec with their ecosystem. I'd look for any native solutions you can that are cross-platform (IOS & Android) as AR isn't feasible to implement on your own. For tracking, you can find many Tensorflow projects with object/OpenCV & pose tracking as a start. |
Beta Was this translation helpful? Give feedback.
-
@CodyJasonBennett Would it be possible to build something on iOS with |
Beta Was this translation helpful? Give feedback.
R3F v8 brings support for react-native, but native AR features are very limited on mobile devices (not implemented; also see caniuse). Unfortunately, I don't believe Apple intends to implement this any time soon until they can better integrate the spec with their ecosystem.
I'd look for any native solutions you can that are cross-platform (IOS & Android) as AR isn't feasible to implement on your own. For tracking, you can find many Tensorflow projects with object/OpenCV & pose tracking as a start.