summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/gltf/Wine.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qt3d/gltf/Wine.qml')
-rw-r--r--examples/qt3d/gltf/Wine.qml12
1 files changed, 3 insertions, 9 deletions
diff --git a/examples/qt3d/gltf/Wine.qml b/examples/qt3d/gltf/Wine.qml
index 676cffb77..e743ad2d9 100644
--- a/examples/qt3d/gltf/Wine.qml
+++ b/examples/qt3d/gltf/Wine.qml
@@ -48,15 +48,9 @@ Entity {
components: [
Transform {
- matrix: {
- var m = Qt.matrix4x4();
- m.translate(root.position);
- m.rotate(root.angleX, Qt.vector3d(1, 0, 0))
- m.rotate(root.angleY, Qt.vector3d(0, 1, 0))
- m.rotate(root.angleZ, Qt.vector3d(0, 0, 1))
- m.scale(root.scale);
- return m;
- }
+ translation: root.position
+ rotation: fromEulerAngles(root.angleX, root.angleY, root.angleZ)
+ scale: root.scale
},
SceneLoader {
source: "qrc:/assets/gltf/wine/wine.gltf"