mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 19:00:28 +02:00
Added camera clipping setting.
This commit is contained in:
parent
3e397b45a6
commit
43ea730c4a
1 changed files with 10 additions and 0 deletions
|
@ -294,6 +294,16 @@ Rectangle {
|
|||
}
|
||||
}
|
||||
|
||||
// Camera clipping
|
||||
SettingBoolean {
|
||||
settingText: "Allow camera clipping";
|
||||
settingEnabled: !Render.cameraClippingEnabled
|
||||
|
||||
onSettingEnabledChanged: {
|
||||
Render.cameraClippingEnabled = settingEnabled ? 0 : 1;
|
||||
}
|
||||
}
|
||||
|
||||
// Anti Aliasing
|
||||
SettingComboBox {
|
||||
settingText: "Anti-aliasing";
|
||||
|
|
Loading…
Reference in a new issue