Изменить поиск изображений поверхностей в форме сцены с помощью arcore

Где я изменяю изображение sceneform_hand_phone.png на собственное? Это изображение руки, которая используется в сцене сцены библиотеки для Android с ARCore.

Спасибо

2 ответа

HelloSceneformActivity.java:

public class HelloSceneformActivity extends AppCompatActivity {
    private ArFragment arFragment;
    private View phoneImage;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_ux);

        // Get AR fragment from layout
        arFragment = (ArFragment) getSupportFragmentManager().findFragmentById(R.id.ux_fragment);

        // Disable plane discovery hand motion animation
        arFragment.getPlaneDiscoveryController().hide();

        ViewGroup container = findViewById(R.id.sceneform_hand_layout);
        container.removeAllViews();

        // Create the new plane discovery animation and add it to the hand layout.
        phoneImage = getLayoutInflater().inflate(R.layout.hand_layout, container, true);

        // Set the instructions view in the plane discovery controller.
        arFragment.getPlaneDiscoveryController().setInstructionView(phoneImage);
    }
}

activity_ux.xml:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/sceneform_hand_layout"
    android:clipChildren="false"
    tools:context=".HelloSceneformActivity">

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

</FrameLayout>

Поместите пользовательскую анимацию руки в собственный файл макета (он должен быть создан динамически), hand_layout.xml:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

  <com.google.ar.sceneform.ux.HandMotionView
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:foregroundGravity="center"
      android:scaleType="center"
      android:src="@drawable/YOURIMAGE" />

</FrameLayout>

build.gradle:

buildscript {
    repositories {
        google()
        jcenter()
        mavenLocal()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.2'
       classpath 'com.google.ar.sceneform:plugin:1.3.0'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
        mavenLocal()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

Вот конечная точка API, которую вы ищете - https://developers.google.com/ar/reference/java/com/google/ar/sceneform/ux/PlaneDiscoveryController

class ExampleFragment : ArFragment() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState);
        ...
        val customDiscoveryView = <inflate custom view>
        planeDiscoveryController.setInstructionView(customDiscoveryView)
    }
}
Другие вопросы по тегам