We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I tried to get the position and the eulerAngles of the image I detect with the event listener "onAnchorDetected" here is my code
render() { console.log("render"); return ( <View style={styles.container}> <ARKit style={{ flex: 1 }} debug onAnchorDetected={anchor => this.imageDetected(anchor)} onAnchorUpdated={anchor => this.imageDetected(anchor)} detectionImages={[{ resourceGroupName: 'DetectionImages' }]} onARKitError={console.log} > </ARKit> </View> ); }
imageDetected = (anchor) => { console.log(anchor); }
Here is what the console return : for the onAnchorDetected
for the onAnchorUpdated
Here we can see that the onAnchorUpdated return the correct values and when the event is called after the values update properly.
Thank you
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I tried to get the position and the eulerAngles of the image I detect with the event listener "onAnchorDetected" here is my code
Here is what the console return :
for the onAnchorDetected
for the onAnchorUpdated
Here we can see that the onAnchorUpdated return the correct values and when the event is called after the values update properly.
Thank you
The text was updated successfully, but these errors were encountered: