Replies: 1 comment
-
Did you find any solution to this problem? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am implementing indoor navigtion using ViroReact . I am trying to push scene after tracking image but getting
this.incrementSceneReference is not a function
const onPlaceAnchorFound = place => { console.log('anchor found', place); console.log('props', props); getPOIsFromBuilding(); // navigation.navigate('IndoorLocation'); props.arSceneNavigator.push('IndoorLocation', IndoorLocation); };
<ViroARScene> {placeData.map(place => { return ( <ViroARImageMarker target={place.marker_slug} onAnchorFound={() => onPlaceAnchorFound(place)}> <ViroBox position={[0, 0, 0]} scale={[0.1, 0.1, 0.1]} /> </ViroARImageMarker> ); })} </ViroARScene>
Beta Was this translation helpful? Give feedback.
All reactions