diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2018-07-05 00:44:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-05 00:44:23 +0200 |
commit | c41d322e110988fafedef343c6864bf300019b07 (patch) | |
tree | d5fe98f2ac8c125d771a327244723375e7b2eaa3 /core/project_settings.cpp | |
parent | c538f2ff8014a3a411c5c3dd66de4ead6d341035 (diff) | |
parent | 4cd69e91fc096668e2000a06f6fc9ee673516cec (diff) |
Merge pull request #19183 from Nallebeorn/rename-main-scene
Update resource file project settings after renaming/moving the files
Diffstat (limited to 'core/project_settings.cpp')
-rw-r--r-- | core/project_settings.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/project_settings.cpp b/core/project_settings.cpp index a7bfc8895b..7f9f4b638a 100644 --- a/core/project_settings.cpp +++ b/core/project_settings.cpp @@ -870,6 +870,10 @@ void ProjectSettings::set_custom_property_info(const String &p_prop, const Prope custom_prop_info[p_prop].name = p_prop; } +const Map<StringName, PropertyInfo> &ProjectSettings::get_custom_property_info() const { + return custom_prop_info; +} + void ProjectSettings::set_disable_feature_overrides(bool p_disable) { disable_feature_overrides = p_disable; |