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 支持。

相关内容