File: SettingsPage.qml

package info (click to toggle)
qt6-quick3d 6.8.2-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 140,860 kB
  • sloc: cpp: 380,464; ansic: 36,078; xml: 252; sh: 241; makefile: 29
file content (1369 lines) | stat: -rw-r--r-- 56,898 bytes parent folder | download
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import QtQuick3D
import QtQuick3D.Helpers

Page {
    id: toolPage

    required property PerspectiveCamera camera
    required property var sceneEnvironment
    required property Texture lutTexture

    component HorizontalSpacer : Item {
        Layout.fillWidth: true
    }

    component ResetButton : Button {
        signal reset()

        text: "Reset to Defaults"
        Layout.alignment: Qt.AlignRight
        onClicked: {
            reset()
        }
    }

    ScrollView {
        anchors.fill: parent
        anchors.margins: 10
        contentHeight: editableSections.implicitHeight

        ColumnLayout {
            id: editableSections
            width: parent.width

            // AA
            SectionLayout {
                id: antialiasingSection
                title: "Antialiasing"

                Label {
                    text: "AA Mode"
                    Layout.fillWidth: true
                }

                RowLayout {
                    HorizontalSpacer { }
                    ComboBox {
                        id: antialiasingModeComboBox
                        textRole: "text"
                        valueRole: "value"
                        implicitContentWidthPolicy: ComboBox.WidestText
                        onActivated: toolPage.sceneEnvironment.antialiasingMode = currentValue
                        Layout.fillWidth: true
                        model: [
                            { value: SceneEnvironment.NoAA, text: "No Antialiasing"},
                            { value: SceneEnvironment.SSAA, text: "Supersample AA"},
                            { value: SceneEnvironment.MSAA, text: "Multisample AA"},
                            { value: SceneEnvironment.ProgressiveAA, text: "Progressive AA"}
                        ]

                        Connections {
                            target: toolPage.sceneEnvironment
                            function onAntialiasingModeChanged() {
                                antialiasingModeComboBox.currentIndex = antialiasingModeComboBox.indexOfValue(toolPage.sceneEnvironment.antialiasingMode)
                            }
                        }
                    }
                }

                Label {
                    text: "AA Quality"
                    Layout.fillWidth: true
                    visible: toolPage.sceneEnvironment.antialiasingMode !== SceneEnvironment.NoAA
                }

                RowLayout {
                    visible: toolPage.sceneEnvironment.antialiasingMode !== SceneEnvironment.NoAA
                    HorizontalSpacer { }
                    ComboBox {
                        id: antialiasingQualityComboBox
                        Layout.fillWidth: true
                        textRole: "text"
                        valueRole: "value"
                        implicitContentWidthPolicy: ComboBox.WidestText
                        onActivated: toolPage.sceneEnvironment.antialiasingQuality = currentValue
                        model: [
                            { value: SceneEnvironment.Medium, text: "Medium"},
                            { value: SceneEnvironment.High, text: "High"},
                            { value: SceneEnvironment.VeryHigh, text: "VeryHigh"}
                        ]

                        Connections {
                            target: toolPage.sceneEnvironment
                            function onAntialiasingModeChanged() {
                                antialiasingQualityComboBox.currentIndex = antialiasingQualityComboBox.indexOfValue(toolPage.sceneEnvironment.antialiasingQuality)
                            }
                        }
                    }
                }

                CheckBox {
                    Layout.columnSpan: 2
                    text: "Enable FXAA"
                    checked: toolPage.sceneEnvironment.fxaaEnabled
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.fxaaEnabled = checked
                    }
                }

                CheckBox {
                    Layout.columnSpan: 2
                    text: "Enable Temporal AA"
                    checked: toolPage.sceneEnvironment.temporalAAEnabled
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.temporalAAEnabled = checked
                    }
                }

                Label {
                    visible: toolPage.sceneEnvironment.temporalAAEnabled
                    text: "Temporal AA Strength (" + toolPage.sceneEnvironment.temporalAAStrength.toFixed(2) + ")"
                    Layout.fillWidth: true
                }

                Slider {
                    visible: toolPage.sceneEnvironment.temporalAAEnabled
                    Layout.fillWidth: true
                    from: 0.0
                    to: 1.0
                    value: toolPage.sceneEnvironment.temporalAAStrength
                    onValueChanged:
                        toolPage.sceneEnvironment.temporalAAStrength = value
                }


                CheckBox {
                    Layout.columnSpan: 2
                    text: "Enable Specular AA"
                    checked: toolPage.sceneEnvironment.specularAAEnabled
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.specularAAEnabled = checked
                    }
                }
                HorizontalSpacer { }
                ResetButton {
                    onReset: {
                        toolPage.sceneEnvironment.antialiasingMode = SceneEnvironment.NoAA
                        toolPage.sceneEnvironment.antialiasingQuality = SceneEnvironment.High
                        toolPage.sceneEnvironment.fxaaEnabled = false
                        toolPage.sceneEnvironment.temporalAAEnabled = false
                        toolPage.sceneEnvironment.temporalAAStrength = 0.3
                        toolPage.sceneEnvironment.specularAAEnabled = false
                    }
                }
            }

            // TONEMAPPING
            SectionLayout {
                id: tonemappingSection
                title: "Tonemapping"

                Label {
                    text: "Tonemapping Mode"
                    Layout.fillWidth: true
                }

                ComboBox {
                    id: tonemappingModeComboBox
                    Layout.fillWidth: true
                    textRole: "text"
                    valueRole: "value"
                    implicitContentWidthPolicy: ComboBox.WidestText
                    onActivated: toolPage.sceneEnvironment.tonemapMode = currentValue
                    Component.onCompleted: tonemappingModeComboBox.currentIndex = tonemappingModeComboBox.indexOfValue(toolPage.sceneEnvironment.tonemapMode)
                    model: [
                        { value: SceneEnvironment.TonemapModeNone, text: "None"},
                        { value: SceneEnvironment.TonemapModeAces, text: "ACES"},
                        { value: SceneEnvironment.TonemapModeFilmic, text: "Filmic"},
                        { value: SceneEnvironment.TonemapModeHejlDawson, text: "HejlDawson"},
                        { value: SceneEnvironment.TonemapModeLinear, text: "Linear"}
                    ]

                    Connections {
                        target: toolPage.sceneEnvironment
                        function onTonemapModeChanged() {
                            tonemappingModeComboBox.currentIndex = tonemappingModeComboBox.indexOfValue(toolPage.sceneEnvironment.tonemapMode)
                        }
                    }
                }

                Label {
                    text: "Exposure (" + (toolPage.sceneEnvironment.exposure).toFixed(2) + ")"
                    Layout.fillWidth: true
                }
                Slider {
                    Layout.fillWidth: true
                    from: 0.0
                    to: 10.0
                    value: toolPage.sceneEnvironment.exposure
                    onValueChanged:
                        toolPage.sceneEnvironment.exposure = value
                }

                Label {
                    text: "Probe Exposure (" + (toolPage.sceneEnvironment.probeExposure).toFixed(2) + ")"
                    Layout.fillWidth: true
                }
                Slider {
                    Layout.fillWidth: true
                    from: 0.0
                    to: 10.0
                    value: toolPage.sceneEnvironment.probeExposure
                    onValueChanged:
                        toolPage.sceneEnvironment.probeExposure = value
                }

                Label {
                    enabled: !(toolPage.sceneEnvironment.tonemapMode === SceneEnvironment.TonemapModeLinear || toolPage.sceneEnvironment.tonemapMode === SceneEnvironment.TonemapModeNone)
                    text: "White Point (" + (toolPage.sceneEnvironment.whitePoint).toFixed(2) + ")"
                    Layout.fillWidth: true
                }
                Slider {
                    enabled: !(toolPage.sceneEnvironment.tonemapMode === SceneEnvironment.TonemapModeLinear || toolPage.sceneEnvironment.tonemapMode === SceneEnvironment.TonemapModeNone)
                    Layout.fillWidth: true
                    from: 0.0
                    to: 1.0
                    value: toolPage.sceneEnvironment.whitePoint
                    onValueChanged:
                        toolPage.sceneEnvironment.whitePoint = value
                }

                Label {
                    text: "Sharpness Amount (" + (toolPage.sceneEnvironment.sharpnessAmount).toFixed(2) + ")"
                    Layout.fillWidth: true
                }
                Slider {
                    Layout.fillWidth: true
                    from: 0.0
                    to: 1.0
                    value: toolPage.sceneEnvironment.sharpnessAmount
                    onValueChanged:
                        toolPage.sceneEnvironment.sharpnessAmount = value
                }


                CheckBox {
                    Layout.columnSpan: 2
                    text: "Enable Dithering"
                    checked: toolPage.sceneEnvironment.ditheringEnabled
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.ditheringEnabled = checked
                    }
                }

                HorizontalSpacer {
                }
                ResetButton {
                    onReset: {
                        toolPage.sceneEnvironment.tonemapMode = SceneEnvironment.TonemapModeLinear
                        toolPage.sceneEnvironment.exposure = 1.0
                        toolPage.sceneEnvironment.whitePoint = 1.0
                        toolPage.sceneEnvironment.sharpnessAmount = 0.0
                        toolPage.sceneEnvironment.ditheringEnabled = false
                    }
                }
            }

            // AO
            SectionLayout {
                id: aoSection
                title: "Ambient Occlusion"
                isExpanded: false

                readonly property bool aoEnabled: toolPage.sceneEnvironment.aoEnabled

                CheckBox {
                    Layout.columnSpan: 2
                    text: "Enable Screen Space Ambient Occlusion"
                    checked: toolPage.sceneEnvironment.aoEnabled
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.aoEnabled = checked
                    }
                }

                Label {
                    enabled: aoSection.aoEnabled
                    text: "Strength (" + (toolPage.sceneEnvironment.aoStrength).toFixed(2) + ")"
                    Layout.fillWidth: true
                }
                Slider {
                    enabled: aoSection.aoEnabled
                    Layout.fillWidth: true
                    from: aoSection.aoEnabled ? 0.01 : 0.0
                    to: 100.0
                    value: toolPage.sceneEnvironment.aoStrength
                    onValueChanged: {
                        toolPage.sceneEnvironment.aoStrength = value
                    }
                }


                Label {
                    enabled: aoSection.aoEnabled
                    text: "Softness (" + (toolPage.sceneEnvironment.aoSoftness).toFixed(2) + ")"
                    Layout.fillWidth: true
                }
                Slider {
                    enabled: aoSection.aoEnabled
                    Layout.fillWidth: true
                    from: 0.0
                    to: 50.0
                    value: toolPage.sceneEnvironment.aoSoftness
                    onValueChanged:
                        toolPage.sceneEnvironment.aoSoftness = value
                }


                Label {
                    enabled: aoSection.aoEnabled
                    text: "Distance (" + (toolPage.sceneEnvironment.aoDistance).toFixed(2) + ")"
                    Layout.fillWidth: true
                }
                Slider {
                    enabled: aoSection.aoEnabled
                    Layout.fillWidth: true
                    from: 0.01
                    to: 5.0
                    value: toolPage.sceneEnvironment.aoDistance
                    onValueChanged:
                        toolPage.sceneEnvironment.aoDistance = value
                }

                Label {
                    enabled: aoSection.aoEnabled
                    text: "Sample Rate"
                    Layout.fillWidth: true
                }

                ComboBox {
                    id: aoSampleRateComboBox
                    enabled: aoSection.aoEnabled
                    textRole: "text"
                    valueRole: "value"
                    implicitContentWidthPolicy: ComboBox.WidestText
                    onActivated: toolPage.sceneEnvironment.aoSampleRate = currentValue
                    Layout.fillWidth: true

                    model: [
                        { value: 2, text: "2"},
                        { value: 3, text: "3"},
                        { value: 4, text: "4"}
                    ]

                    Connections {
                        target: toolPage.sceneEnvironment
                        function onAoSampleRateChanged() {
                            aoSampleRateComboBox.currentIndex = aoSampleRateComboBox.indexOfValue(toolPage.sceneEnvironment.aoSampleRate)
                        }
                    }
                }

                Label {
                    enabled: aoSection.aoEnabled
                    text: "Bias (" + (toolPage.sceneEnvironment.aoBias).toFixed(2) + ")"
                    Layout.fillWidth: true
                }
                Slider {
                    enabled: aoSection.aoEnabled
                    Layout.fillWidth: true
                    from: -1.0
                    to: 1.0
                    stepSize: 0.01
                    value: toolPage.sceneEnvironment.aoBias
                    onValueChanged:
                        toolPage.sceneEnvironment.aoBias = value
                }

                CheckBox {
                    enabled: aoSection.aoEnabled
                    Layout.columnSpan: 2
                    text: "Enable AO Dither"
                    checked: toolPage.sceneEnvironment.aoDither
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.aoDither = checked
                    }
                }

                HorizontalSpacer {
                }
                ResetButton {
                    onReset: {
                        if (toolPage.sceneEnvironment.aoEnabled)
                            toolPage.sceneEnvironment.aoStrength = 100.0
                        else
                            toolPage.sceneEnvironment.aoStrength = 0.0
                        toolPage.sceneEnvironment.aoSoftness = 50.0
                        toolPage.sceneEnvironment.aoDistance = 5.0
                        toolPage.sceneEnvironment.aoSampleRate = 2
                        toolPage.sceneEnvironment.aoBias = 0.0
                        toolPage.sceneEnvironment.aoDither = false
                    }
                }
            }

            // DOF
            SectionLayout {
                id: dofSection
                title: "Depth of Field"
                isExpanded: false

                readonly property bool dofEnabled: toolPage.sceneEnvironment.depthOfFieldEnabled

                CheckBox {
                    Layout.columnSpan: 2
                    text: "Enabled"
                    checked: toolPage.sceneEnvironment.depthOfFieldEnabled
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.depthOfFieldEnabled = checked
                    }
                }

                Label {
                    enabled: dofSection.dofEnabled
                    Layout.columnSpan: 2
                    text: "Focus Distance (" + (toolPage.sceneEnvironment.depthOfFieldFocusDistance).toFixed(2) + ")"
                    Layout.fillWidth: true
                }

                Label {
                    enabled: dofSection.dofEnabled
                    Layout.columnSpan: 2
                    text: "Focus Range (" + (toolPage.sceneEnvironment.depthOfFieldFocusRange).toFixed(2) +")"
                    Layout.fillWidth: true
                }

                Label {
                    enabled: dofSection.dofEnabled
                    Layout.columnSpan: 2
                    text: "Focus Near (" + dofFocusSlider.first.value.toFixed(2) + ")"
                    Layout.fillWidth: true
                }
                Label {
                    enabled: dofSection.dofEnabled
                    Layout.columnSpan: 2
                    text: "Focus Far (" + dofFocusSlider.second.value.toFixed(2) + ")"
                    Layout.fillWidth: true
                }

                RangeSlider {
                    id: dofFocusSlider
                    enabled: dofSection.dofEnabled
                    Layout.columnSpan: 2
                    from: toolPage.camera.clipNear
                    to: toolPage.camera.clipFar
                    Layout.fillWidth: true

                    function updateSlider() {
                        const dofNear = toolPage.sceneEnvironment.depthOfFieldFocusDistance - toolPage.sceneEnvironment.depthOfFieldFocusRange * 0.5
                        const dofFar = toolPage.sceneEnvironment.depthOfFieldFocusDistance + toolPage.sceneEnvironment.depthOfFieldFocusRange * 0.5
                        second.value = dofFar
                        first.value = dofNear
                    }

                    Component.onCompleted: updateSlider()
                    first.onMoved: {
                        toolPage.sceneEnvironment.depthOfFieldFocusRange = second.value - first.value
                        toolPage.sceneEnvironment.depthOfFieldFocusDistance = first.value + toolPage.sceneEnvironment.depthOfFieldFocusRange * 0.5
                    }
                    second.onMoved: {
                        toolPage.sceneEnvironment.depthOfFieldFocusRange = second.value - first.value
                        toolPage.sceneEnvironment.depthOfFieldFocusDistance = first.value + toolPage.sceneEnvironment.depthOfFieldFocusRange * 0.5
                    }
                }


                Label {
                    enabled: dofSection.dofEnabled
                    Layout.fillWidth: true
                    text: "Blur Amount (" + (toolPage.sceneEnvironment.depthOfFieldBlurAmount).toFixed(2) + ")"
                }
                Slider {
                    enabled: dofSection.dofEnabled
                    Layout.fillWidth: true
                    from: 0.0
                    to: 25.0
                    value: toolPage.sceneEnvironment.depthOfFieldBlurAmount
                    onValueChanged:
                        toolPage.sceneEnvironment.depthOfFieldBlurAmount = value
                }
                HorizontalSpacer {
                }
                ResetButton {
                    onReset: {
                        toolPage.sceneEnvironment.depthOfFieldFocusRange = 100.0
                        toolPage.sceneEnvironment.depthOfFieldFocusDistance = 600.0
                        toolPage.sceneEnvironment.depthOfFieldBlurAmount = 4.0
                        dofFocusSlider.updateSlider()
                    }
                }

            }

            // FOG
            SectionLayout {
                id: fogSection
                title: "Fog"
                isExpanded: false

                property bool fogEnabled: toolPage.sceneEnvironment.fog.enabled

                CheckBox {
                    Layout.columnSpan: 2
                    text: "Enabled"
                    checked: toolPage.sceneEnvironment.fog.enabled
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.fog.enabled = checked
                    }
                }

                Label {
                    enabled: fogSection.fogEnabled
                    Layout.fillWidth: true
                    text: "Density (" + toolPage.sceneEnvironment.fog.density.toFixed(2) + ")"
                }
                Slider {
                    id: valDensity
                    enabled: fogSection.fogEnabled
                    Layout.fillWidth: true
                    from: 0.0
                    to: 1.0
                    value: toolPage.sceneEnvironment.fog.density
                    onValueChanged: toolPage.sceneEnvironment.fog.density = value
                }


                Label {
                    enabled: fogSection.fogEnabled
                    Layout.fillWidth: true
                    text: "Color"
                }
                ColorPicker {
                    enabled: fogSection.fogEnabled
                    Layout.fillWidth: true
                    color: toolPage.sceneEnvironment.fog.color
                    onColorChanged: toolPage.sceneEnvironment.fog.color = color
                }


                // DEPTH FOG
                CheckBox {
                    id: depthFogCheckbox
                    Layout.columnSpan: 2
                    enabled: fogSection.fogEnabled
                    Layout.fillWidth: true
                    text: "Depth fog enabled"
                    checked: toolPage.sceneEnvironment.fog.depthEnabled
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.fog.depthEnabled = checked
                    }
                }

                Label {
                    visible: depthFogCheckbox.checked
                    Layout.fillWidth: true
                    Layout.columnSpan: 2
                    text: "Near (" + toolPage.sceneEnvironment.fog.depthNear.toFixed(2) + ")"
                }
                Label {
                    visible: depthFogCheckbox.checked
                    Layout.fillWidth: true
                    Layout.columnSpan: 2
                    text: "Far (" + toolPage.sceneEnvironment.fog.depthFar.toFixed(2) + ")"
                }

                RangeSlider {
                    id: valDepth
                    visible: depthFogCheckbox.checked
                    Layout.columnSpan: 2
                    Layout.fillWidth: true
                    from: -1000.0
                    to: 1000.0
                    first.value: toolPage.sceneEnvironment.fog.depthNear
                    second.value: toolPage.sceneEnvironment.fog.depthFar
                    first.onValueChanged: toolPage.sceneEnvironment.fog.depthNear = first.value
                    second.onValueChanged: toolPage.sceneEnvironment.fog.depthFar = second.value
                }


                Label {
                    visible: depthFogCheckbox.checked
                    Layout.fillWidth: true
                    text: "Curve (" + toolPage.sceneEnvironment.fog.depthCurve.toFixed(2) + ")"
                }
                Slider {
                    id: valDepthCurve
                    visible: depthFogCheckbox.checked
                    Layout.fillWidth: true
                    from: 0.0
                    to: 1.0
                    value: toolPage.sceneEnvironment.fog.depthCurve
                    onValueChanged: toolPage.sceneEnvironment.fog.depthCurve = value
                }


                // HEIGHT FOG
                CheckBox {
                    id: heightFogCheckbox
                    Layout.columnSpan: 2
                    enabled: fogSection.fogEnabled
                    text: "Height fog enabled"
                    checked: toolPage.sceneEnvironment.fog.heightEnabled
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.fog.heightEnabled = checked
                    }
                }

                Label {
                    visible: heightFogCheckbox.checked
                    Layout.fillWidth: true
                    text: "Least Intense Y (" + toolPage.sceneEnvironment.fog.leastIntenseY.toFixed(2) + ")"
                }
                Slider {
                    id: valHeightMin
                    visible: heightFogCheckbox.checked
                    Layout.fillWidth: true
                    from: -1000.0
                    to: 1000.0
                    value: toolPage.sceneEnvironment.fog.leastIntenseY
                    onValueChanged: toolPage.sceneEnvironment.fog.leastIntenseY = value
                }


                Label {
                    visible: heightFogCheckbox.checked
                    Layout.fillWidth: true
                    text: "Most Intense Y (" + toolPage.sceneEnvironment.fog.mostIntenseY.toFixed(2) + ")"
                }
                Slider {
                    id: valHeightMax
                    visible: heightFogCheckbox.checked
                    Layout.fillWidth: true
                    from: -1000.0
                    to: 1000.0
                    value: toolPage.sceneEnvironment.fog.mostIntenseY
                    onValueChanged: toolPage.sceneEnvironment.fog.mostIntenseY = value
                }


                Label {
                    visible: heightFogCheckbox.checked
                    Layout.fillWidth: true
                    text: "Curve (" + toolPage.sceneEnvironment.fog.heightCurve.toFixed(2) + ")"
                }
                Slider {
                    id: valHeightCurve
                    visible: heightFogCheckbox.checked
                    Layout.fillWidth: true
                    from: 0.0
                    to: 100.0
                    value: toolPage.sceneEnvironment.fog.heightCurve
                    onValueChanged: toolPage.sceneEnvironment.fog.heightCurve = value
                }


                // TRANSMISSION
                CheckBox {
                    id: fogTransmitCheckbox
                    Layout.columnSpan: 2
                    visible: heightFogCheckbox.checked || depthFogCheckbox.checked
                    text: "Light transmission enabled"
                    checked: toolPage.sceneEnvironment.fog.transmitEnabled
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.fog.transmitEnabled = checked
                    }
                }

                Label {
                    visible: fogTransmitCheckbox.checked
                    Layout.fillWidth: true
                    text: "Curve (" + toolPage.sceneEnvironment.fog.transmitCurve.toFixed(2) + ")"
                }
                Slider {
                    id: valTransmitCurve
                    visible: fogTransmitCheckbox.checked
                    Layout.fillWidth: true
                    from: 0.0
                    to: 100.0
                    value: toolPage.sceneEnvironment.fog.transmitCurve
                    onValueChanged: toolPage.sceneEnvironment.fog.transmitCurve = value
                }

                HorizontalSpacer {
                }
                ResetButton {
                    onReset: {
                        toolPage.sceneEnvironment.fog.depthEnabled = false
                        toolPage.sceneEnvironment.fog.heightEnabled = false
                        toolPage.sceneEnvironment.fog.transmitEnabled = false
                        toolPage.sceneEnvironment.fog.density = 1.0;
                        toolPage.sceneEnvironment.fog.color = Qt.rgba(0.5, 0.6, 0.7, 1.0);
                        toolPage.sceneEnvironment.fog.depthNear = 10.0;
                        toolPage.sceneEnvironment.fog.depthFar = 1000.0;
                        toolPage.sceneEnvironment.fog.depthCurve = 1.0;
                        toolPage.sceneEnvironment.fog.leastIntenseY = 10.0;
                        toolPage.sceneEnvironment.fog.mostIntenseY = 0.0;
                        toolPage.sceneEnvironment.fog.heightCurve = 1.0;
                        toolPage.sceneEnvironment.fog.transmitCurve = 1.0;
                    }
                }
            }

            // GLOW
            SectionLayout {
                id: glowSection
                title: "Glow"
                isExpanded: false

                property bool glowEnabled: toolPage.sceneEnvironment.glowEnabled

                CheckBox {
                    Layout.columnSpan: 2
                    text: "Enable Glow"
                    checked: toolPage.sceneEnvironment.glowEnabled
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.glowEnabled = checked
                    }
                }
                CheckBox {
                    Layout.columnSpan: 2
                    text: "High Quality Mode"
                    enabled: glowSection.glowEnabled
                    checked: toolPage.sceneEnvironment.glowQualityHigh
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.glowQualityHigh = checked
                    }
                }
                CheckBox {
                    Layout.columnSpan: 2
                    enabled: glowSection.glowEnabled
                    text: "Use Bicubic Upscale"
                    checked: toolPage.sceneEnvironment.glowUseBicubicUpscale
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.glowUseBicubicUpscale = checked
                    }
                }

                Label {
                    Layout.fillWidth: true
                    enabled: glowSection.glowEnabled
                    text: "Strength (" + (toolPage.sceneEnvironment.glowStrength).toFixed(2) + ")"
                }
                Slider {
                    Layout.fillWidth: true
                    enabled: glowSection.glowEnabled
                    from: 0.0
                    to: 2.0
                    value: toolPage.sceneEnvironment.glowStrength
                    onValueChanged:
                        toolPage.sceneEnvironment.glowStrength = value
                }

                Label {
                    Layout.fillWidth: true
                    enabled: glowSection.glowEnabled
                    text: "Intensity (" + (toolPage.sceneEnvironment.glowIntensity).toFixed(2) + ")"
                }
                Slider {
                    Layout.fillWidth: true
                    enabled: glowSection.glowEnabled
                    from: 0.0
                    to: 2.0
                    value: toolPage.sceneEnvironment.glowIntensity
                    onValueChanged:
                        toolPage.sceneEnvironment.glowIntensity = value
                }


                Label {
                    Layout.fillWidth: true
                    enabled: glowSection.glowEnabled
                    text: "Bloom (" + (toolPage.sceneEnvironment.glowBloom).toFixed(2) + ")"
                }
                Slider {
                    Layout.fillWidth: true
                    enabled: glowSection.glowEnabled
                    from: 0.0
                    to: 1.0
                    value: toolPage.sceneEnvironment.glowBloom
                    onValueChanged:
                        toolPage.sceneEnvironment.glowBloom = value
                }


                Label {
                    Layout.fillWidth: true
                    enabled: glowSection.glowEnabled
                    text: "Upper Threshold (" + (toolPage.sceneEnvironment.glowHDRMaximumValue).toFixed(2) + ")"
                }
                Slider {
                    Layout.fillWidth: true
                    enabled: glowSection.glowEnabled
                    from: 0.0
                    to: 256.0
                    value: toolPage.sceneEnvironment.glowHDRMaximumValue
                    onValueChanged:
                        toolPage.sceneEnvironment.glowHDRMaximumValue = value
                }


                Label {
                    Layout.fillWidth: true
                    enabled: glowSection.glowEnabled
                    text: "Lower Threshold (" + (toolPage.sceneEnvironment.glowHDRMinimumValue).toFixed(2) + ")"
                }
                Slider {
                    Layout.fillWidth: true
                    enabled: glowSection.glowEnabled
                    from: 0.0
                    to: 4.0
                    value: toolPage.sceneEnvironment.glowHDRMinimumValue
                    onValueChanged:
                        toolPage.sceneEnvironment.glowHDRMinimumValue = value
                }


                Label {
                    Layout.fillWidth: true
                    enabled: glowSection.glowEnabled
                    text: "HDR Scale (" + (toolPage.sceneEnvironment.glowHDRScale).toFixed(2) + ")"
                }
                Slider {
                    Layout.fillWidth: true
                    enabled: glowSection.glowEnabled
                    from: 0.0
                    to: 4.0
                    value: toolPage.sceneEnvironment.glowHDRScale
                    onValueChanged:
                        toolPage.sceneEnvironment.glowHDRScale = value
                }


                Label {
                    Layout.fillWidth: true
                    enabled: glowSection.glowEnabled
                    text: "Blend Mode"
                }

                ComboBox {
                    id: glowBlendModeComboBox
                    Layout.fillWidth: true
                    enabled: glowSection.glowEnabled
                    textRole: "text"
                    valueRole: "value"
                    implicitContentWidthPolicy: ComboBox.WidestText
                    onActivated: toolPage.sceneEnvironment.glowBlendMode = currentValue
                    Component.onCompleted: currentIndex = glowBlendModeComboBox.indexOfValue(toolPage.sceneEnvironment.glowBlendMode)

                    model: [
                        { value: ExtendedSceneEnvironment.GlowBlendMode.Additive, text: "Additive"},
                        { value: ExtendedSceneEnvironment.GlowBlendMode.Screen, text: "Screen"},
                        { value: ExtendedSceneEnvironment.GlowBlendMode.SoftLight, text: "Softlight"},
                        { value: ExtendedSceneEnvironment.GlowBlendMode.Replace, text: "Replace"}
                    ]

                    Connections {
                        target: toolPage.sceneEnvironment
                        function onGlowBlendModeChanged() {
                            glowBlendModeComboBox.currentIndex = glowBlendModeComboBox.indexOfValue(toolPage.sceneEnvironment.glowBlendMode)
                        }
                    }
                }


                Label {
                    text: "Glow Level"
                    Layout.fillWidth: true
                    enabled: glowSection.glowEnabled
                }

                ColumnLayout {
                    id: glowLevelCheckBoxes
                    enabled: glowSection.glowEnabled
                    Layout.fillWidth: true
                    function updateGlowLevels(value, enable) {
                        if (enable)
                            toolPage.sceneEnvironment.glowLevel |= value
                        else
                            toolPage.sceneEnvironment.glowLevel &= ~value
                    }
                    function isChecked(flag) { return ((toolPage.sceneEnvironment.glowLevel & flag) === flag) }
                    CheckBox {
                        text: qsTr("One")
                        checked: glowLevelCheckBoxes.isChecked(ExtendedSceneEnvironment.GlowLevel.One)
                        onCheckStateChanged: {
                            glowLevelCheckBoxes.updateGlowLevels(ExtendedSceneEnvironment.GlowLevel.One, checkState === Qt.Checked)
                        }
                    }
                    CheckBox {
                        text: qsTr("Two")
                        checked: glowLevelCheckBoxes.isChecked(ExtendedSceneEnvironment.GlowLevel.Two)
                        onCheckStateChanged: {
                            glowLevelCheckBoxes.updateGlowLevels(ExtendedSceneEnvironment.GlowLevel.Two, checkState === Qt.Checked)
                        }
                    }
                    CheckBox {
                        text: qsTr("Three")
                        checked: glowLevelCheckBoxes.isChecked(ExtendedSceneEnvironment.GlowLevel.Three)
                        onCheckStateChanged: {
                            glowLevelCheckBoxes.updateGlowLevels(ExtendedSceneEnvironment.GlowLevel.Three, checkState === Qt.Checked)
                        }
                    }
                    CheckBox {
                        text: qsTr("Four")
                        checked: glowLevelCheckBoxes.isChecked(ExtendedSceneEnvironment.GlowLevel.Four)
                        onCheckStateChanged: {
                            glowLevelCheckBoxes.updateGlowLevels(ExtendedSceneEnvironment.GlowLevel.Four, checkState === Qt.Checked)
                        }
                    }
                    CheckBox {
                        text: qsTr("Five")
                        checked: glowLevelCheckBoxes.isChecked(ExtendedSceneEnvironment.GlowLevel.Five)
                        onCheckStateChanged: {
                            glowLevelCheckBoxes.updateGlowLevels(ExtendedSceneEnvironment.GlowLevel.Five, checkState === Qt.Checked)
                        }
                    }
                    CheckBox {
                        text: qsTr("Six")
                        checked: glowLevelCheckBoxes.isChecked(ExtendedSceneEnvironment.GlowLevel.Six)
                        onCheckStateChanged: {
                            glowLevelCheckBoxes.updateGlowLevels(ExtendedSceneEnvironment.GlowLevel.Six, checkState === Qt.Checked)
                        }
                    }
                    CheckBox {
                        text: qsTr("Seven")
                        checked: glowLevelCheckBoxes.isChecked(ExtendedSceneEnvironment.GlowLevel.Seven)
                        onCheckStateChanged: {
                            glowLevelCheckBoxes.updateGlowLevels(ExtendedSceneEnvironment.GlowLevel.Seven, checkState === Qt.Checked)
                        }
                    }
                }

                HorizontalSpacer {
                }
                ResetButton {
                    onReset: {
                        toolPage.sceneEnvironment.glowQualityHigh = false
                        toolPage.sceneEnvironment.glowUseBicubicUpscale = false
                        toolPage.sceneEnvironment.glowStrength = 1.0
                        toolPage.sceneEnvironment.glowIntensity = 0.8
                        toolPage.sceneEnvironment.glowBloom = 0.0
                        toolPage.sceneEnvironment.glowBlendMode = 2
                        toolPage.sceneEnvironment.glowHDRMaximumValue = 12.0
                        toolPage.sceneEnvironment.glowHDRScale = 2.0
                        toolPage.sceneEnvironment.glowHDRMinimumValue = 1.0
                        toolPage.sceneEnvironment.glowLevel = 1
                    }
                }

            }

            // ADJUSTMENT
            SectionLayout {
                id: adjustmentsSection
                title: "Adjustments"
                isExpanded: false

                property bool colorAdjustmentsEnabled: toolPage.sceneEnvironment.colorAdjustmentsEnabled

                CheckBox {
                    Layout.columnSpan: 2
                    text: "Enable Color Adjustments"
                    checked: toolPage.sceneEnvironment.colorAdjustmentsEnabled
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.colorAdjustmentsEnabled = checked
                    }
                }

                Label {
                    enabled: adjustmentsSection.colorAdjustmentsEnabled
                    text: "Brightness (" + (toolPage.sceneEnvironment.adjustmentBrightness).toFixed(2) + ")"
                    Layout.fillWidth: true
                }
                Slider {
                    enabled: adjustmentsSection.colorAdjustmentsEnabled
                    Layout.fillWidth: true
                    from: 0.01
                    to: 8.0
                    stepSize: 0.01
                    value: toolPage.sceneEnvironment.adjustmentBrightness
                    onValueChanged:
                        toolPage.sceneEnvironment.adjustmentBrightness = value
                }


                Label {
                    enabled: adjustmentsSection.colorAdjustmentsEnabled
                    text: "Contrast (" + (toolPage.sceneEnvironment.adjustmentContrast).toFixed(2) + ")"
                    Layout.fillWidth: true
                }
                Slider {
                    enabled: adjustmentsSection.colorAdjustmentsEnabled
                    Layout.fillWidth: true
                    from: 0.01
                    to: 8.0
                    stepSize: 0.01
                    value: toolPage.sceneEnvironment.adjustmentContrast
                    onValueChanged:
                        toolPage.sceneEnvironment.adjustmentContrast = value
                }


                Label {
                    enabled: adjustmentsSection.colorAdjustmentsEnabled
                    text: "Saturation (" + (toolPage.sceneEnvironment.adjustmentSaturation).toFixed(2) + ")"
                    Layout.fillWidth: true
                }
                Slider {
                    enabled: adjustmentsSection.colorAdjustmentsEnabled
                    Layout.fillWidth: true
                    from: 0.01
                    to: 8.0
                    stepSize: 0.01
                    value: toolPage.sceneEnvironment.adjustmentSaturation
                    onValueChanged:
                        toolPage.sceneEnvironment.adjustmentSaturation = value
                }

                HorizontalSpacer {
                }
                ResetButton {
                    onReset: {
                        toolPage.sceneEnvironment.adjustmentBrightness = 1.0
                        toolPage.sceneEnvironment.adjustmentContrast = 1.0
                        toolPage.sceneEnvironment.adjustmentSaturation = 1.0
                    }
                }
            }

            // COLORGRADING
            SectionLayout {
                id: colorGradingSection
                title: "Color Grading"
                isExpanded: false

                property bool colorGradingEnabled: toolPage.sceneEnvironment.lutEnabled

                CheckBox {
                    Layout.columnSpan: 2
                    text: "Enable"
                    checked: toolPage.sceneEnvironment.lutEnabled
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.lutEnabled = checked
                    }
                }

                Label {
                    enabled: colorGradingSection.colorGradingEnabled
                    text: "Alpha Filtering (" + (toolPage.sceneEnvironment.lutFilterAlpha).toFixed(2) + ")"
                    Layout.fillWidth: true
                }
                Slider {
                    enabled: colorGradingSection.colorGradingEnabled
                    Layout.fillWidth: true
                    from: 0.0
                    to: 1.0
                    value: toolPage.sceneEnvironment.lutFilterAlpha
                    onValueChanged:
                        toolPage.sceneEnvironment.lutFilterAlpha = value
                }

                Label {
                    enabled: colorGradingSection.colorGradingEnabled
                    text: "Look Up Texture (LUT)"
                    Layout.fillWidth: true
                }

                ComboBox {
                    id: lutSourceTextureComboBox
                    enabled: colorGradingSection.colorGradingEnabled
                    Layout.fillWidth: true
                    textRole: "text"
                    valueRole: "value"
                    implicitContentWidthPolicy: ComboBox.WidestText
                    onActivated: toolPage.lutTexture.source = currentValue
                    Component.onCompleted: lutSourceTextureComboBox.currentIndex = lutSourceTextureComboBox.indexOfValue(toolPage.lutTexture.source)
                    model: [
                        { value: Qt.url("qrc:/luts/grayscale.png"), text: "Greyscale"},
                        { value: Qt.url("qrc:/luts/identity.png"), text: "Identity"},
                        { value: Qt.url("qrc:/luts/inverted.png"), text: "Inverted"}
                    ]

                    Connections {
                        target: toolPage.lutTexture
                        function onSourceChanged() {
                            lutSourceTextureComboBox.currentIndex = lutSourceTextureComboBox.indexOfValue(toolPage.lutTexture.source)
                        }
                    }
                }

                HorizontalSpacer {
                }
                ResetButton {
                    onReset: {
                        toolPage.sceneEnvironment.lutFilterAlpha = 1.0;
                        toolPage.lutTexture.source = Qt.url("qrc:/luts/identity.png");
                    }
                }
            }

            // VIGNETTE
            SectionLayout {
                id: vignetteSection
                title: "Vignette"
                isExpanded: false

                property bool vignetteEnabled: toolPage.sceneEnvironment.vignetteEnabled

                CheckBox {
                    Layout.columnSpan: 2
                    text: "Enable"
                    checked: toolPage.sceneEnvironment.vignetteEnabled
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.vignetteEnabled = checked
                    }
                }


                Label {
                    enabled: vignetteSection.vignetteEnabled
                    text: "Vignette Strength(" + (toolPage.sceneEnvironment.vignetteStrength).toFixed(2) + ")"
                    Layout.fillWidth: true
                }
                Slider {
                    enabled: vignetteSection.vignetteEnabled
                    Layout.fillWidth: true
                    from: 0.0
                    to: 15.0
                    value: toolPage.sceneEnvironment.vignetteStrength
                    onValueChanged:
                        toolPage.sceneEnvironment.vignetteStrength = value
                }


                Label {
                    text: "Vignette Color"
                    enabled: vignetteSection.vignetteEnabled
                    Layout.fillWidth: true
                }
                ColorPicker {
                    enabled: vignetteSection.vignetteEnabled
                    Layout.fillWidth: true
                    color: toolPage.sceneEnvironment.vignetteColor
                    onColorChanged:
                        toolPage.sceneEnvironment.vignetteColor = color
                }

                Label {
                    text: "Vignette Radius(" + (toolPage.sceneEnvironment.vignetteRadius).toFixed(2) + ")"
                    enabled: vignetteSection.vignetteEnabled
                    Layout.fillWidth: true
                }
                Slider {
                    enabled: vignetteSection.vignetteEnabled
                    Layout.fillWidth: true
                    from: 0.0
                    to: 5.0
                    value: toolPage.sceneEnvironment.vignetteRadius
                    onValueChanged:
                        toolPage.sceneEnvironment.vignetteRadius = value
                }

                HorizontalSpacer {
                }
                ResetButton {
                    onReset: {
                        toolPage.sceneEnvironment.vignetteStrength = 15.0
                        toolPage.sceneEnvironment.vignetteColor = Qt.rgba(0.5, 0.5, 0.5, 1.0)
                        toolPage.sceneEnvironment.vignetteRadius = 0.35
                    }
                }
            }

            // LENSFLARE
            SectionLayout {
                id: lensFlareSection
                title: "Lens Flare"
                isExpanded: false

                property bool lensFlareEnabled: toolPage.sceneEnvironment.lensFlareEnabled

                CheckBox {
                    Layout.columnSpan: 2
                    text: "Enable"
                    checked: toolPage.sceneEnvironment.lensFlareEnabled
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.lensFlareEnabled = checked
                    }
                }

                Label {
                    text: "Bloom Scale(" + (toolPage.sceneEnvironment.lensFlareBloomScale).toFixed(2) + ")"
                    Layout.fillWidth: true
                    enabled: lensFlareSection.lensFlareEnabled
                }
                Slider {
                    Layout.fillWidth: true
                    enabled: lensFlareSection.lensFlareEnabled
                    from: 0.0
                    to: 20.0
                    value: toolPage.sceneEnvironment.lensFlareBloomScale
                    onValueChanged:
                        toolPage.sceneEnvironment.lensFlareBloomScale = value
                }


                Label {
                    text: "Bloom Bias(" + (toolPage.sceneEnvironment.lensFlareBloomBias).toFixed(2) + ")"
                    Layout.fillWidth: true
                    enabled: lensFlareSection.lensFlareEnabled
                }
                Slider {
                    Layout.fillWidth: true
                    enabled: lensFlareSection.lensFlareEnabled
                    from: 0.0
                    to: 10.0
                    value: toolPage.sceneEnvironment.lensFlareBloomBias
                    onValueChanged:
                        toolPage.sceneEnvironment.lensFlareBloomBias = value
                }

                Label {
                    text: "Ghost Dispersal(" + (toolPage.sceneEnvironment.lensFlareGhostDispersal).toFixed(2) + ")"
                    Layout.fillWidth: true
                    enabled: lensFlareSection.lensFlareEnabled
                }
                Slider {
                    Layout.fillWidth: true
                    enabled: lensFlareSection.lensFlareEnabled
                    from: 0.0
                    to: 1.0
                    value: toolPage.sceneEnvironment.lensFlareGhostDispersal
                    onValueChanged:
                        toolPage.sceneEnvironment.lensFlareGhostDispersal = value
                }


                Label {
                    text: "Ghost Count(" + (toolPage.sceneEnvironment.lensFlareGhostCount) + ")"
                    Layout.fillWidth: true
                    enabled: lensFlareSection.lensFlareEnabled
                }
                Slider {
                    Layout.fillWidth: true
                    enabled: lensFlareSection.lensFlareEnabled
                    from: 0
                    to: 20
                    stepSize: 1
                    value: toolPage.sceneEnvironment.lensFlareGhostCount
                    onValueChanged:
                        toolPage.sceneEnvironment.lensFlareGhostCount = value
                }


                Label {
                    text: "Halo Width(" + (toolPage.sceneEnvironment.lensFlareHaloWidth).toFixed(2) + ")"
                    Layout.fillWidth: true
                    enabled: lensFlareSection.lensFlareEnabled
                }
                Slider {
                    Layout.fillWidth: true
                    enabled: lensFlareSection.lensFlareEnabled
                    from: 0.0
                    to: 1.0
                    value: toolPage.sceneEnvironment.lensFlareHaloWidth
                    onValueChanged:
                        toolPage.sceneEnvironment.lensFlareHaloWidth = value
                }


                Label {
                    text: "Stretch Aspect(" + (toolPage.sceneEnvironment.lensFlareStretchToAspect).toFixed(2) + ")"
                    Layout.fillWidth: true
                    enabled: lensFlareSection.lensFlareEnabled
                }
                Slider {
                    Layout.fillWidth: true
                    enabled: lensFlareSection.lensFlareEnabled
                    from: 0.0
                    to: 1.0
                    value: toolPage.sceneEnvironment.lensFlareStretchToAspect
                    onValueChanged:
                        toolPage.sceneEnvironment.lensFlareStretchToAspect = value
                }


                Label {
                    Layout.fillWidth: true
                    enabled: lensFlareSection.lensFlareEnabled
                    text: "Distortion(" + (toolPage.sceneEnvironment.lensFlareDistortion).toFixed(2) + ")"
                }
                Slider {
                    Layout.fillWidth: true
                    enabled: lensFlareSection.lensFlareEnabled
                    from: 0.0
                    to: 20.0
                    value: toolPage.sceneEnvironment.lensFlareDistortion
                    onValueChanged:
                        toolPage.sceneEnvironment.lensFlareDistortion = value
                }


                Label {
                    text: "Blur Amount(" + (toolPage.sceneEnvironment.lensFlareBlurAmount).toFixed(2) + ")"
                    Layout.fillWidth: true
                    enabled: lensFlareSection.lensFlareEnabled
                }
                Slider {
                    Layout.fillWidth: true
                    enabled: lensFlareSection.lensFlareEnabled
                    from: 0.0
                    to: 50.0
                    value: toolPage.sceneEnvironment.lensFlareBlurAmount
                    onValueChanged:
                        toolPage.sceneEnvironment.lensFlareBlurAmount = value
                }

                CheckBox {
                    enabled: lensFlareSection.lensFlareEnabled
                    Layout.columnSpan: 2
                    text: "Apply Lens Dirt"
                    checked: toolPage.sceneEnvironment.lensFlareApplyDirtTexture
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.lensFlareApplyDirtTexture = checked
                    }
                }
                CheckBox {
                    enabled: lensFlareSection.lensFlareEnabled
                    Layout.columnSpan: 2
                    text: "Apply Starburst"
                    checked: toolPage.sceneEnvironment.lensFlareApplyStarburstTexture
                    onCheckedChanged: {
                        toolPage.sceneEnvironment.lensFlareApplyStarburstTexture = checked
                    }
                }
                HorizontalSpacer {
                }
                ResetButton {
                    onReset: {
                        toolPage.sceneEnvironment.lensFlareBloomScale = 10
                        toolPage.sceneEnvironment.lensFlareBloomBias = 2.75
                        toolPage.sceneEnvironment.lensFlareGhostDispersal = 0.5
                        toolPage.sceneEnvironment.lensFlareGhostCount = 4
                        toolPage.sceneEnvironment.lensFlareHaloWidth = 0.25
                        toolPage.sceneEnvironment.lensFlareStretchToAspect = 0.5
                        toolPage.sceneEnvironment.lensFlareDistortion = 5
                        toolPage.sceneEnvironment.lensFlareBlurAmount = 3
                        toolPage.sceneEnvironment.lensFlareApplyDirtTexture = true
                        toolPage.sceneEnvironment.lensFlareApplyStarburstTexture = true
                    }
                }
            }
        }
    }
}