mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 06:57:37 +02:00
alezia's fixes
This commit is contained in:
parent
3e617d003a
commit
24ed76a5db
1 changed files with 6 additions and 5 deletions
|
@ -4,6 +4,7 @@
|
||||||
//
|
//
|
||||||
// Created by Zach Fox on 2019-07-10
|
// Created by Zach Fox on 2019-07-10
|
||||||
// Copyright 2019 High Fidelity, Inc.
|
// Copyright 2019 High Fidelity, Inc.
|
||||||
|
// Copyright 2024 Overte e.V.
|
||||||
//
|
//
|
||||||
// Distributed under the Apache License, Version 2.0.
|
// Distributed under the Apache License, Version 2.0.
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
@ -268,16 +269,16 @@ Flickable {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
HifiControlsUit.CheckBox {
|
HifiControlsUit.CheckBox {
|
||||||
id: renderingEffectFog
|
id: renderingEffectHaze
|
||||||
checked: Render.hazeEnabled
|
checked: Render.hazeEnabled
|
||||||
boxSize: 16
|
boxSize: 16
|
||||||
text: "Fog"
|
text: "Haze"
|
||||||
spacing: -1
|
spacing: -1
|
||||||
colorScheme: hifi.colorSchemes.dark
|
colorScheme: hifi.colorSchemes.dark
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.top: renderingEffectShadows.bottom
|
anchors.top: renderingEffectShadows.bottom
|
||||||
onCheckedChanged: {
|
onCheckedChanged: {
|
||||||
Render.hazeEnabled = renderingEffectFog.checked;
|
Render.hazeEnabled = renderingEffectHaze.checked;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
HifiControlsUit.CheckBox {
|
HifiControlsUit.CheckBox {
|
||||||
|
@ -288,7 +289,7 @@ Flickable {
|
||||||
spacing: -1
|
spacing: -1
|
||||||
colorScheme: hifi.colorSchemes.dark
|
colorScheme: hifi.colorSchemes.dark
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.top: renderingEffectFog.bottom
|
anchors.top: renderingEffectHaze.bottom
|
||||||
onCheckedChanged: {
|
onCheckedChanged: {
|
||||||
Render.bloomEnabled = renderingEffectBloom.checked;
|
Render.bloomEnabled = renderingEffectBloom.checked;
|
||||||
}
|
}
|
||||||
|
@ -834,7 +835,7 @@ Flickable {
|
||||||
text: "Procedural Materials"
|
text: "Procedural Materials"
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.top: parent.top
|
anchors.top: parent.top
|
||||||
width: 130
|
width: 150
|
||||||
height: parent.height
|
height: parent.height
|
||||||
size: 16
|
size: 16
|
||||||
color: "#FFFFFF"
|
color: "#FFFFFF"
|
||||||
|
|
Loading…
Reference in a new issue