Optimizations: motion blur is better, and quality is now customizable. Default value is 50%. which is again a good compromise.

This commit is contained in:
Filippo Scognamiglio
2014-12-15 02:35:13 +01:00
parent 37317136ed
commit 26d5c56cd0
5 changed files with 49 additions and 14 deletions
+21
View File
@@ -83,6 +83,27 @@ Tab{
Text{text: Math.round(bloomSlider.value * 100) + "%"}
}
}
GroupBox{
title: qsTr("Motion Blur")
Layout.fillWidth: true
anchors.left: parent.left
anchors.right: parent.right
GridLayout{
id: blurQualityContainer
anchors.fill: parent
Text{text: qsTr("Blur Quality")}
Slider{
Layout.fillWidth: true
id: blurSlider
onValueChanged: appSettings.blur_quality = value;
value: appSettings.blur_quality
stepSize: 0.10
Component.onCompleted: minimumValue = 0.3 //Without this value gets set to 0.5
}
Text{text: Math.round(blurSlider.value * 100) + "%"}
}
}
GroupBox{
title: qsTr("Frame")
Layout.fillWidth: true