react-native-arkit
react-native-arkit copied to clipboard
React Native binding for iOS ARKit
I know ARKit has face tracking https://developer.apple.com/videos/play/fall2017/601/ I was wondering if you plan to implement such a feature or you decided not to (and why)
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.4 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...
It throws RCTConvert.h not found at first line of color-grabber. Manually linked the library, using react-native 0.60.3. Any ideas?
Is it possible to check whether detection image is visible or not? I tried to use `onAchorRemoved` callback but it is never called. I even tried changing the source code...
``` { Vibration.vibrate(300); let {data} = event.nativeEvent; console.log(data); }} onPeerConnected={(event) => { Vibration.vibrate(1000); console.log('peer connected!!!'); console.log(event.nativeEvent.peer); }} onPeerDisconnected={(event) => { Vibration.vibrate(1000); console.log('peer disconnected!!!'); console.log(event.nativeEvent.peer); }} onPeerConnecting={(event) => { Vibration.vibrate(1000); console.log('peer...
React/RCTConvert.h file not found : Need to improve plugin for works with last react-native version
Same error for me with same version of react-native. This package is awesome but not works with last version of react-native. Need to improve this package for works with last...
New API's exposed - [AREnvironmentProbeAnchor](https://developer.apple.com/documentation/arkit/arenvironmentprobeanchor) - [ARWorldMap](https://developer.apple.com/documentation/arkit/arworldmap) - [ARReferenceObject](https://developer.apple.com/documentation/arkit/arreferenceobject) - [ARObjectAnchor](https://developer.apple.com/documentation/arkit/arobjectanchor) - [ARObjectScanningConfiguration](https://developer.apple.com/documentation/arkit/arobjectscanningconfiguration) - [ARImageTrackingConfiguration](https://developer.apple.com/documentation/arkit/arimagetrackingconfiguration) With the ARWorldMap being the most anticipated feature yet in ARKit, we could expose it...
Hi, I have used the library for the last couple of weeks and built and pretty interesting application. I would like share some code that will benefit most of the...
The example in documentation with the ``` import { ARKit } from 'react-native-arkit' //... const result = await ARKit.hitTestSceneObjects(point); ``` Isn't very clear to me how I'm supposed to use...
**Use case**: record videos with AR objects in them How do I go about doing this? can this library export the output as a binary or video file? Cheers.