Ubuntu Touch Qt3D 2.0이 시작 시 충돌함

Ubuntu Touch Qt3D 2.0이 시작 시 충돌함

QML3D에서 무언가를 개발하려고 노력했는데 내 앱이 데스크탑에서 잘 실행되는 동안 태블릿에서 작동하도록 할 수 없습니다(예를 들어 소프트웨어 센터의 Qt3D 실린더를 생각해도 -https://github.com/Sturmflut/ubuntu-touch-qt3d-cylinder- 잘 작동하고 있습니다.)

빈 뷰포트만 있는 가장 쉬운 애플리케이션을 찾았지만 태블릿에서는 여전히 충돌이 발생합니다. 코드는 다음과 같습니다.

import QtQuick 2.0
import Qt3D 2.0
import Ubuntu.Components 1.1

/*!
    \brief MainView with a Label and Button elements.
*/

MainView {
    // objectName for functional testing purposes (autopilot-qt5)
    objectName: "mainView"

    // Note! applicationName needs to match the "name" field of the click manifest
    applicationName: "com.ubuntu.developer.zubozrout.3d-car"

    /*
     This property enables the application to change orientation
     when the device is rotated. The default is false.
    */
    automaticOrientation: true

    // Removes the old toolbar and enables new features of the new header.
    useDeprecatedToolbar: false

    width: units.gu(100)
    height: units.gu(75)

    Page {
        title: i18n.tr("Simple")

        Viewport {
            id: viewport
            width: 100
            height: 100
            fillColor: "#8bd"
        }
    }
}

왜 충돌하는지 아시는 분 계시나요? 태블릿에서 실행하려고 할 때마다 검은색 로딩 화면이 나타났다가 홈 화면으로 돌아갑니다. 당신의 도움을 주셔서 대단히 감사합니다.

답변1

QML3D는 더 이상 개발되지 않으므로 Ubuntu Touch에서 지원되지 않습니다.

관련 정보