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 <img width="1197" alt="Screenshot 2019-06-05 at 11 22 50" src="https://user-images.githubusercontent.com/32643369/58945545-5996d200-8784-11e9-9956-f5d6d05946a6.png"> for the onAnchorUpdated <img width="1215" alt="Screenshot 2019-06-05 at 11 24 41" src="https://user-images.githubusercontent.com/32643369/58945635-8c40ca80-8784-11e9-8b4b-d1dddd4d93f1.png"> Here we can see that the onAnchorUpdated return the correct values and when the event is called after the values update properly. Thank you