diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-10-09 00:05:56 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2022-10-09 00:16:07 +0200 |
commit | bab8497fa229f58d291a2818f41c651524c61e7a (patch) | |
tree | 33f7f28b7852b75f60501e20011312b175075e69 /editor/plugins | |
parent | 880a0177d12463b612268afe95bd3d8dd565bf52 (diff) |
Add a project setting to make the root viewport transparent
This allows recording videos with a transparent background without
having to create a script.
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/node_3d_editor_plugin.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/plugins/node_3d_editor_plugin.cpp b/editor/plugins/node_3d_editor_plugin.cpp index 4430877b8a..47d2c23ff7 100644 --- a/editor/plugins/node_3d_editor_plugin.cpp +++ b/editor/plugins/node_3d_editor_plugin.cpp @@ -2400,6 +2400,9 @@ 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"); + viewport->set_transparent_background(transparent_background); + const bool use_debanding = GLOBAL_GET("rendering/anti_aliasing/quality/use_debanding"); viewport->set_use_debanding(use_debanding); |