我一直在嘗試在 QML3D 中開發一些東西,雖然我的應用程式在桌面上運行良好,但我無法讓它在我的平板電腦上運行(甚至認為例如來自軟體中心的 Qt3D 圓柱體 -https://github.com/Sturmflut/ubuntu-touch-qt3d-圓筒- 工作得很好)。
我已經找到了最簡單的應用程序,只有空視口,但它仍然在我的平板電腦上崩潰。這是代碼:
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 不再支援。