You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am implementing indoor navigtion using ViroReact . I am trying to push scene after tracking image but getting this.incrementSceneReference is not a function
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
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