-
Notifications
You must be signed in to change notification settings - Fork 46
Open
Description
const markerRef= useRef<THREE.Group>(null);
const modelRef= useRef<THREE.Group>(null);
<ARMarker
ref={markerRef}
params={{ smooth: true }}
type={"pattern"}
patternUrl={"data/patt.kanji"}
onMarkerFound={(x) => {
console.log(x); // undefined
}}
>
<Model
ref={modelRef}
scale={[1, 1, 1]}
url="/model.glb"
/>
</ARMarker>
later I try to get the position like this:
modelRef.current.getWorldPosition(new THREE.Vector3()),
it is always 0
Vector3 {x: 0, y: 0, z: 0}
Vector3 {x: 0, y: 0, z: 0}
Metadata
Metadata
Assignees
Labels
No labels