File: main.qml

package info (click to toggle)
qt6-quick3d 6.8.2-5
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 140,860 kB
  • sloc: cpp: 380,464; ansic: 36,078; xml: 252; sh: 241; makefile: 29
file content (242 lines) | stat: -rw-r--r-- 7,020 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick
import QtQuick3D
import QtQuick3D.Particles3D
import QtQuick3D.Helpers
import QtQuick.Controls

Window {
    id: window
    width: 640
    height: 640
    visible: true
    color: "black"

    WasdController {
        controlledObject: camera
    }

    View3D {
        id: view
        anchors.fill: parent

        environment: SceneEnvironment {
            clearColor: window.color
            backgroundMode: SceneEnvironment.SkyBox
            lightProbe: Texture {
                source: "qrc:///OpenfootageNET_garage-1024.hdr"
            }
            probeOrientation: Qt.vector3d(0, -90, 0)
        }

        PerspectiveCamera {
            id: camera
            position: Qt.vector3d(0, 200, 400)
            eulerRotation.x: -30
        }

        DirectionalLight {
            eulerRotation.x: -60
            castsShadow: true
        }

        Model {
            property real angle: 0
            source: "#Sphere"
            x: Math.cos(angle) * 100
            z: Math.sin(angle) * 100
            receivesReflections: true

            NumberAnimation on angle {
                from: 0
                to: Math.PI * 2
                duration: 8000
                loops: Animation.Infinite
            }

            materials: PrincipledMaterial {
                metalness: 1
                roughness: 0

                SequentialAnimation on roughness {
                    loops: Animation.Infinite
                    NumberAnimation {
                        from: 0
                        to: 1.0
                        duration: 5000
                    }
                    NumberAnimation {
                        from: 1
                        to: 0.0
                        duration: 5000
                    }
                }
            }

            ReflectionProbe {
                id: probe
                timeSlicing: {
                    if (comboTimeSlicing.currentIndex === 0) ReflectionProbe.None
                    else if (comboTimeSlicing.currentIndex === 1) ReflectionProbe.AllFacesAtOnce
                    else ReflectionProbe.IndividualFaces
                }
                refreshMode: {
                    if (comboRefreshMode.currentIndex === 0) ReflectionProbe.EveryFrame
                    else ReflectionProbe.FirstFrame
                }
                quality: {
                    if (comboQuality.currentIndex === 0) ReflectionProbe.VeryLow
                    else if (comboQuality.currentIndex === 1) ReflectionProbe.Low
                    else if (comboQuality.currentIndex === 2) ReflectionProbe.Medium
                    else if (comboQuality.currentIndex === 3) ReflectionProbe.High
                    else ReflectionProbe.VeryHigh
                }
                parallaxCorrection: checkParallax.checked
                boxSize: Qt.vector3d(sliderBoxX.value, sliderBoxY.value, sliderBoxZ.value)
                texture: {
                    if (comboTexture.currentIndex === 0) null
                    else if (comboTexture.currentIndex === 1) ktxCubeTexture
                    else if (comboTexture.currentIndex === 2) pngCubeTexture
                    else pngTexture
                }
            }
        }

        CubeMapTexture {
            id: ktxCubeTexture
            source: "cubemap_bc1.ktx"
        }

        CubeMapTexture {
            id: pngCubeTexture
            source: "qt_logo.png;qt_logo.png;qt_logo.png;qt_logo.png;qt_logo.png;qt_logo.png"
        }

        ParticleSystem3D {
            position: Qt.vector3d(200, 0, 0)
            SpriteParticle3D {
                id: starParticle
                sprite: Texture {
                    source: "snowflake.png"
                }
                maxAmount: 200
                color: "#ffff00"
                particleScale: 20.0
                fadeOutDuration: 500
                billboard: true
            }
            ParticleEmitter3D {
                particle: starParticle
                velocity: VectorDirection3D {
                    direction: Qt.vector3d(100, 200, 0)
                    directionVariation: Qt.vector3d(20, 20, 20)
                }
                particleScaleVariation: 0.4
                emitRate: 50
                lifeSpan: 4000
            }
            Gravity3D {
                magnitude: 100
            }
        }

        Model {
            source: "#Sphere"
            materials: DefaultMaterial {}
        }

        Model {
            position: Qt.vector3d(0, 0, 200)
            source: "#Sphere"
            materials: DefaultMaterial {}
        }

        Model {
            source: "#Cube"

            materials: [
                CustomMaterial {
                    shadingMode: CustomMaterial.Shaded
                    fragmentShader: "material_simple.frag"
                    property color uDiffuse: "fuchsia"
                    property real uSpecular: 1.0
                }
            ]

            //materials: PrincipledMaterial {}

            y: -200
            scale: Qt.vector3d(10, 1, 10)
        }
    }

    Frame {
        anchors.top: parent.top
        anchors.topMargin: 20
        anchors.left: parent.left
        anchors.leftMargin: 10
        background: Rectangle {
            color: "#e0e0e0"
            border.color: "#000000"
            border.width: 1
            opacity: 0.8
        }
        Column {
            id: settingsArea
            ComboBox {
                id: comboTimeSlicing
                width: 200
                model: [ "None", "All Faces At Once", "Individual Faces" ]
            }
            ComboBox {
                id: comboRefreshMode
                width: 200
                model: [ "Every Frame", "First Frame" ]
            }
            ComboBox {
                id: comboQuality
                width: 200
                model: [ "Very Low", "Low", "Medium", "High", "Very High" ]
            }
            CheckBox {
                id: checkParallax
                checked: false
                text: qsTr("Parallax")
            }
            Slider {
                id: sliderBoxX
                from: 0
                value: 0
                to: 1000
            }
            Slider {
                id: sliderBoxY
                from: 0
                value: 0
                to: 1000
            }
            Slider {
                id: sliderBoxZ
                from: 0
                value: 0
                to: 1000
            }
            Button {
                text: "Schedule Update"
                onClicked: probe.scheduleUpdate()
            }
            ComboBox {
                id: comboTexture
                width: 200
                model: [ "No texture", "KtxCubeMapTexture", "PngCubeMapTexture" ]
            }
        }
    }

    DebugView {
        anchors.right: parent.right
        source: view
    }
}