私は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 ではサポートされません。