naver / egjs-view3d

Fast & customizable 3D model viewer for everyone
https://naver.github.io/egjs-view3d
MIT License
193 stars 27 forks source link

Problem: the AR button on iOS doesn't appear #76

Open dmnbme opened 3 months ago

dmnbme commented 3 months ago

Description

I enabled webAR, quicklook, and filled iosSrc, but the AR button does not appear.

My codes

onMounted(() => {
      view3D = new View3D(viewerContainer.value, {
        src: props.modelUrl,
        canvas: canvasElement.value,
        wheelScrollable: true,
        pitch: 30,
        yaw: -30,
        iosSrc: "/model/example.usdz",
        webAR: true,
        quickLook: true
      });

I wonder if something I've done was wrong.