English
Appearance
English
Appearance
Basic AR/Gyroscope scenes correspond to the cloud-ar type.
Basic AR/Gyroscope relies on a large-scale cloud image database, and the 3D content appears directly on screen, optionally with gyroscope support.In practice, Basic AR/Gyroscope can either skip the scan step or require scanning, while Image AR must scan before the experience can begin.
If the Basic AR/Gyroscope scene is configured to skip cloud recognition, the flow becomes shorter.
The advanced API currently provides:
await api.skipCloudar();This method:
In other words, it is effectively "skip waiting for scan results and enter the experience directly".
iframe.addEventListener('ready', (event) => {
const { api } = event.detail;
skipButton.addEventListener('click', async () => {
await api.skipCloudar();
});
});Basic AR/Gyroscope scenes.Basic AR/Gyroscope content.If a Basic AR/Gyroscope scene enables the gyroscope, additional motion logic is introduced after loading completes.
That causes two practical issues:
For Web iframe integrations, it is still recommended to disable gyroscope dependency whenever possible.
readydownloadAssetProgressloadSceneEndsceneStarterrorincompatibility