summaryrefslogtreecommitdiffstats
path: root/examples/qt3d/skybox/Skybox.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qt3d/skybox/Skybox.qml')
-rw-r--r--examples/qt3d/skybox/Skybox.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/qt3d/skybox/Skybox.qml b/examples/qt3d/skybox/Skybox.qml
index 05725c49f..84994e396 100644
--- a/examples/qt3d/skybox/Skybox.qml
+++ b/examples/qt3d/skybox/Skybox.qml
@@ -65,12 +65,12 @@ Entity {
x: WrapMode.ClampToEdge
y: WrapMode.ClampToEdge
}
- TextureImage { cubeMapFace: Texture.CubeMapPositiveX; source: sourceDirectory + "_posx" + extension }
- TextureImage { cubeMapFace: Texture.CubeMapPositiveY; source: sourceDirectory + "_posy" + extension }
- TextureImage { cubeMapFace: Texture.CubeMapPositiveZ; source: sourceDirectory + "_posz" + extension }
- TextureImage { cubeMapFace: Texture.CubeMapNegativeX; source: sourceDirectory + "_negx" + extension }
- TextureImage { cubeMapFace: Texture.CubeMapNegativeY; source: sourceDirectory + "_negy" + extension }
- TextureImage { cubeMapFace: Texture.CubeMapNegativeZ; source: sourceDirectory + "_negz" + extension }
+ TextureImage { face: Texture.CubeMapPositiveX; source: sourceDirectory + "_posx" + extension }
+ TextureImage { face: Texture.CubeMapPositiveY; source: sourceDirectory + "_posy" + extension }
+ TextureImage { face: Texture.CubeMapPositiveZ; source: sourceDirectory + "_posz" + extension }
+ TextureImage { face: Texture.CubeMapNegativeX; source: sourceDirectory + "_negx" + extension }
+ TextureImage { face: Texture.CubeMapNegativeY; source: sourceDirectory + "_negy" + extension }
+ TextureImage { face: Texture.CubeMapNegativeZ; source: sourceDirectory + "_negz" + extension }
}
ShaderProgram {