diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2019-08-29 11:09:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-29 11:09:28 +0200 |
| commit | a6b094cdfc6cb102a4c2e378f6ae2a06ac646638 (patch) | |
| tree | 9b2809929e572fe057bffde3c579e2032ca084e6 /core/project_settings.cpp | |
| parent | 65d5003bce46f0e715073c6aad5f4b81b9e93ea6 (diff) | |
| parent | 5bd01bf6378b301f34ca23b55f501555e8724978 (diff) | |
Merge pull request #31748 from Calinou/add-project-description
Add a project description setting
Diffstat (limited to 'core/project_settings.cpp')
| -rw-r--r-- | core/project_settings.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/project_settings.cpp b/core/project_settings.cpp index eb88143db3..ec2c5ecbb3 100644 --- a/core/project_settings.cpp +++ b/core/project_settings.cpp @@ -1000,6 +1000,8 @@ ProjectSettings::ProjectSettings() { Ref<InputEventJoypadButton> joyb; GLOBAL_DEF("application/config/name", ""); + GLOBAL_DEF("application/config/description", ""); + custom_prop_info["application/config/description"] = PropertyInfo(Variant::STRING, "application/config/description", PROPERTY_HINT_MULTILINE_TEXT); GLOBAL_DEF("application/run/main_scene", ""); custom_prop_info["application/run/main_scene"] = PropertyInfo(Variant::STRING, "application/run/main_scene", PROPERTY_HINT_FILE, "*.tscn,*.scn,*.res"); GLOBAL_DEF("application/run/disable_stdout", false); |