在显示手部图像后,我看不到场景的点

问题描述 投票:0回答:1

在中央屏幕上的模拟器上运行我的应用程序后,我手握了手机。我应该怎么做才能消失此图标,因为它不显示场景视图中的点。 enter image description here

并且如果此图标消失,则我不会总是看到场景。我需要得到这个结果,但是我只看过一次。enter image description here

这是我的xml文件

<?xml version="1.0" encoding="utf-8"?>

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/container_constraint_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <fragment
        android:id="@+id/jaguar_fragment"
        android:name="com.google.ar.sceneform.ux.ArFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />


</androidx.constraintlayout.widget.ConstraintLayout>
android android-emulator arcore
1个回答
0
投票

手形图标是向用户发送的消息,他们需要四处移动手机以允许ARCore在视图中建立其世界模型并检测场景中的飞机等。

构建后,它将自动消失-如果没有构建,则通常意味着ARCore尚未能够构建模型。将相机对准平坦的表面并四处移动通常会使您越过这一点。

一旦通过此操作,则所有检测到的平面将自动用点突出显示(或如果要通过编程方式更改,则为花药图案)。如果寻像器中没有点,则表明ARCore在该视图中未检测到任何平面。

如果需要,您可以删除手和点的显示,但是您的用户将失去表明ARCore已完成其世界模型并且该应用已准备就绪的指示。

© www.soinside.com 2019 - 2024. All rights reserved.