summaryrefslogtreecommitdiffstats
path: root/tests/manual/loader-qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/loader-qml')
-rw-r--r--tests/manual/loader-qml/CuboidEntity.qml10
-rw-r--r--tests/manual/loader-qml/SphereEntity.qml6
-rw-r--r--tests/manual/loader-qml/main.qml12
3 files changed, 11 insertions, 17 deletions
diff --git a/tests/manual/loader-qml/CuboidEntity.qml b/tests/manual/loader-qml/CuboidEntity.qml
index 580daa94b..d9b33c511 100644
--- a/tests/manual/loader-qml/CuboidEntity.qml
+++ b/tests/manual/loader-qml/CuboidEntity.qml
@@ -56,13 +56,11 @@ import Qt3D.Extras 2.0
Entity {
components: [ mesh, phongMaterial, transform ]
- GeometryRenderer {
+ CuboidMesh {
id: mesh
- view: CuboidMesh {
- yzMeshResolution: Qt.size(2, 2)
- xzMeshResolution: Qt.size(2, 2)
- xyMeshResolution: Qt.size(2, 2)
- }
+ yzMeshResolution: Qt.size(2, 2)
+ xzMeshResolution: Qt.size(2, 2)
+ xyMeshResolution: Qt.size(2, 2)
}
GoochMaterial {
diff --git a/tests/manual/loader-qml/SphereEntity.qml b/tests/manual/loader-qml/SphereEntity.qml
index 14100f31f..8e11de99e 100644
--- a/tests/manual/loader-qml/SphereEntity.qml
+++ b/tests/manual/loader-qml/SphereEntity.qml
@@ -56,11 +56,9 @@ import Qt3D.Extras 2.0
Entity {
components: [ mesh, material, transform ]
- GeometryRenderer {
+ SphereMesh {
id: mesh
- view: SphereMesh {
- radius: 3
- }
+ radius: 3
}
Transform {
diff --git a/tests/manual/loader-qml/main.qml b/tests/manual/loader-qml/main.qml
index 276883103..272331911 100644
--- a/tests/manual/loader-qml/main.qml
+++ b/tests/manual/loader-qml/main.qml
@@ -87,14 +87,12 @@ Entity {
diffuse: "yellow"
}
- GeometryRenderer {
+ TorusMesh {
id: torusMesh
- view: TorusMesh {
- radius: 5
- minorRadius: 1
- rings: 100
- slices: 20
- }
+ radius: 5
+ minorRadius: 1
+ rings: 100
+ slices: 20
}
Transform {