summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/materials/HousePlant.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qt3d/materials/HousePlant.qml')
-rw-r--r--examples/qt3d/materials/HousePlant.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/qt3d/materials/HousePlant.qml b/examples/qt3d/materials/HousePlant.qml
index 6505ab171..7ee810d7f 100644
--- a/examples/qt3d/materials/HousePlant.qml
+++ b/examples/qt3d/materials/HousePlant.qml
@@ -70,8 +70,8 @@ Entity {
position: Qt.vector3d(root.x, root.y, root.z)
material: NormalDiffuseMapMaterial {
- diffuse: "assets/houseplants/pot.webp"
- normal: "assets/houseplants/pot_normal.webp"
+ diffuse: TextureLoader { source: "assets/houseplants/pot.webp" }
+ normal: TextureLoader { source: "assets/houseplants/pot_normal.webp" }
specular: Qt.rgba( 0.75, 0.75, 0.75, 1.0 )
shininess: 5.0
}
@@ -79,8 +79,8 @@ Entity {
RenderableEntity {
source: "assets/houseplants/" + root.potShape + "-" + root.plantType + ".obj"
material: NormalDiffuseMapAlphaMaterial {
- diffuse: "assets/houseplants/" + root.plantType + ".webp"
- normal: "assets/houseplants/" + root.plantType + "_normal.webp"
+ diffuse: TextureLoader { source: "assets/houseplants/" + root.plantType + ".webp" }
+ normal: TextureLoader { source: "assets/houseplants/" + root.plantType + "_normal.webp" }
shininess: 10.0
}
}
@@ -88,8 +88,8 @@ Entity {
RenderableEntity {
source: "assets/houseplants/" + root.potShape + "-pot-cover.obj"
material: NormalDiffuseMapMaterial {
- diffuse: "assets/houseplants/cover.webp"
- normal: "assets/houseplants/cover_normal.webp"
+ diffuse: TextureLoader { source: "assets/houseplants/cover.webp" }
+ normal: TextureLoader { source: "assets/houseplants/cover_normal.webp" }
specular: Qt.rgba( 0.05, 0.05, 0.05, 1.0 )
shininess: 5.0
}