diff options
author | kobewi <kobewi4e@gmail.com> | 2023-08-24 22:39:40 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2023-09-15 21:32:23 +0200 |
commit | cd0aaab48c789cbca3e6ddfa5e0daf1e4cb6b0db (patch) | |
tree | 95c13c0f85166d5d8f6aac29cf59f136477e447d /core/config/project_settings.cpp | |
parent | 5f1e56ff26be4070496aa51095b9ac2f2b4f4ed8 (diff) | |
download | redot-engine-cd0aaab48c789cbca3e6ddfa5e0daf1e4cb6b0db.tar.gz |
Cleanup some GLOBAL_DEFs
Diffstat (limited to 'core/config/project_settings.cpp')
-rw-r--r-- | core/config/project_settings.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/config/project_settings.cpp b/core/config/project_settings.cpp index 9ffbac3553..5ba800ebfe 100644 --- a/core/config/project_settings.cpp +++ b/core/config/project_settings.cpp @@ -1398,6 +1398,8 @@ ProjectSettings::ProjectSettings() { GLOBAL_DEF_BASIC(PropertyInfo(Variant::INT, "rendering/textures/canvas_textures/default_texture_filter", PROPERTY_HINT_ENUM, "Nearest,Linear,Linear Mipmap,Nearest Mipmap"), 1); GLOBAL_DEF_BASIC(PropertyInfo(Variant::INT, "rendering/textures/canvas_textures/default_texture_repeat", PROPERTY_HINT_ENUM, "Disable,Enable,Mirror"), 0); + GLOBAL_DEF("collada/use_ambient", false); + // These properties will not show up in the dialog. If you want to exclude whole groups, use add_hidden_prefix(). GLOBAL_DEF_INTERNAL("application/config/features", PackedStringArray()); GLOBAL_DEF_INTERNAL("internationalization/locale/translation_remaps", PackedStringArray()); |