1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-10 13:00:37 +00:00

Move transparent background project setting to a subsection

This prevents the project setting from being located directly within
a root category, which is confusing from an UX perspective in the
project settings editor.
This commit is contained in:
Hugo Locurcio
2022-12-17 18:45:21 +01:00
parent f18f2740da
commit a3eac5fc7c
3 changed files with 5 additions and 5 deletions

View File

@@ -2606,7 +2606,7 @@ void Node3DEditorViewport::_project_settings_changed() {
const bool use_taa = GLOBAL_GET("rendering/anti_aliasing/quality/use_taa");
viewport->set_use_taa(use_taa);
const bool transparent_background = GLOBAL_GET("rendering/transparent_background");
const bool transparent_background = GLOBAL_GET("rendering/viewport/transparent_background");
viewport->set_transparent_background(transparent_background);
const bool use_debanding = GLOBAL_GET("rendering/anti_aliasing/quality/use_debanding");