react-native-arkit
react-native-arkit copied to clipboard
React Native binding for iOS ARKit
I'm trying to add a Group containing some objects just like in the README, but I keep getting this error:  Line 436 in ARView.js is ``` ``` I've trying...
ARKit 1.5 introduces `sessionShouldAttemptRelocalization` which (if I understand correctly) attempts to find the real world position after a session pause / interruption. This would be a super helpful feature to...
If ARKit is unmounted and remounted, it does not lose information about planes detected internally. But if you are using onPlaneDetected and onPlaneUpdate to visualize the planes detected, you won't...
The texture channel fix from https://github.com/react-native-ar/react-native-arkit/pull/171 works but turns out to be very memory intensive, in some cases leading to crashes. I suggest we undo it until it can be...
I'm using ARKit as optional framework for my app. After recent update i've noticed that app started crashing under iOS 10. ``` dyld: Symbol not found: _SCNHitTestOptionSearchMode ``` After some...
if you set material to null, app crashes with: ``` Exception '-[NSNull objectForKeyedSubscript:]: unrecognized selector sent to instance 0x1b4b31650' was thrown while invoking addPlane on target ARGeosManager with params (...
Use the `source` prop to specify the model file would be more consistent to [how RN loads images](http://facebook.github.io/react-native/releases/0.48/docs/images.html). A few use cases are ### 1. The model file is placed...
Hi, I have a webview where I am showing my 3D model. I want to use AR kit to track plane and then send the model and camera matrices to...
react 16.3. introduces a new context api and starts to deprecated some lifecycle methods https://medium.com/@baphemot/whats-new-in-react-16-3-d2c9b7b6193b it will be fully backwards compatible, but it might be a good oportunity to start...
Currently, latest features get into master and we usually publish a beta version of that. But new users heading to this repo might install the stable release, but see the...