blob: 1ad23a207d9b08879282d760af7a8bbe78076227 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
Uses private parts of the QtQuick3D api which added a namespace in:
https://github.com/qt/qtquick3d/commit/2b139225745a94ab4fa7e30f28cd0207469ee68e
--- a/src/tools/qml2puppet/qml2puppet/editor3d/generalhelper.cpp
+++ b/src/tools/qml2puppet/qml2puppet/editor3d/generalhelper.cpp
@@ -803,5 +803,9 @@
const QMatrix4x4 sceneTransform = parent->sceneTransform() * localTransform;
+#if (QT_VERSION >= QT_VERSION_CHECK(6, 5, 3))
+ return QSSGUtils::mat44::getPosition(sceneTransform);
+#else
return mat44::getPosition(sceneTransform);
+#endif
}
--- a/src/tools/qml2puppet/qml2puppet/editor3d/mousearea3d.cpp
+++ b/src/tools/qml2puppet/qml2puppet/editor3d/mousearea3d.cpp
@@ -738,5 +738,9 @@
const QMatrix4x4 sceneTransform = parent->sceneTransform() * localTransform;
+#if (QT_VERSION >= QT_VERSION_CHECK(6, 5, 3))
+ return QSSGUtils::mat44::getPosition(sceneTransform);
+#else
return mat44::getPosition(sceneTransform);
+#endif
}
|