2022-06-08 12:47:24 +00:00
|
|
|
// Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB).
|
2024-02-23 14:41:04 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2014-12-13 14:46:17 +00:00
|
|
|
|
2015-11-07 19:02:14 +00:00
|
|
|
import QtQuick 2.1 as QQ2
|
2015-10-15 14:05:37 +00:00
|
|
|
import Qt3D.Core 2.0
|
2015-10-18 08:58:19 +00:00
|
|
|
import Qt3D.Render 2.0
|
2016-04-28 15:20:15 +00:00
|
|
|
import Qt3D.Extras 2.0
|
2014-12-13 14:46:17 +00:00
|
|
|
|
|
|
|
Entity {
|
|
|
|
id: root
|
|
|
|
property real hue: 0.0
|
|
|
|
property alias animateColors: hueAnim.running
|
2016-05-04 10:23:32 +00:00
|
|
|
property Layer layer: null
|
2014-12-13 14:46:17 +00:00
|
|
|
|
|
|
|
QQ2.NumberAnimation {
|
|
|
|
id: hueAnim
|
|
|
|
target: root
|
|
|
|
property: "hue"
|
|
|
|
from: 0.0; to: 1.0
|
|
|
|
duration: 200000
|
|
|
|
running: false
|
|
|
|
loops: QQ2.Animation.Infinite
|
|
|
|
}
|
|
|
|
|
|
|
|
Entity {
|
|
|
|
id: _private
|
|
|
|
property color color1: Qt.hsla( (hue + 0.59) % 1, 0.53, 0.59 )
|
|
|
|
property color color2: Qt.hsla( (hue + 0.59) % 1, 1.0, 0.15 )
|
|
|
|
}
|
|
|
|
|
2016-05-04 10:23:32 +00:00
|
|
|
components: [ layer, mesh, transform, material ]
|
2014-12-13 14:46:17 +00:00
|
|
|
|
2016-05-04 10:23:32 +00:00
|
|
|
PlaneMesh {
|
|
|
|
id: mesh
|
|
|
|
width: 2.0
|
|
|
|
height: 2.0
|
|
|
|
meshResolution: Qt.size( 2, 2 )
|
|
|
|
}
|
2014-12-13 14:46:17 +00:00
|
|
|
|
2016-05-04 10:23:32 +00:00
|
|
|
Transform {
|
|
|
|
id: transform
|
|
|
|
// Rotate the plane so that it faces us
|
|
|
|
rotation: fromAxisAndAngle(Qt.vector3d(1, 0, 0), 90)
|
|
|
|
}
|
2014-12-13 14:46:17 +00:00
|
|
|
|
2016-05-04 10:23:32 +00:00
|
|
|
Material {
|
|
|
|
id: material
|
|
|
|
effect: BackgroundEffect {}
|
|
|
|
parameters: [
|
|
|
|
Parameter { name: "color1"; value: Qt.vector3d( _private.color1.r, _private.color1.g, _private.color1.b ) },
|
|
|
|
Parameter { name: "color2"; value: Qt.vector3d( _private.color2.r, _private.color2.g, _private.color2.b ) }
|
|
|
|
]
|
|
|
|
}
|
2014-12-13 14:46:17 +00:00
|
|
|
}
|