|
@@ -205,6 +205,11 @@ void ProjectSettings::set_as_basic(const String &p_name, bool p_basic) {
|
|
|
props[p_name].basic = p_basic;
|
|
|
}
|
|
|
|
|
|
+void ProjectSettings::set_as_internal(const String &p_name, bool p_internal) {
|
|
|
+ ERR_FAIL_COND_MSG(!props.has(p_name), "Request for nonexistent project setting: " + p_name + ".");
|
|
|
+ props[p_name].internal = p_internal;
|
|
|
+}
|
|
|
+
|
|
|
void ProjectSettings::set_ignore_value_in_docs(const String &p_name, bool p_ignore) {
|
|
|
ERR_FAIL_COND_MSG(!props.has(p_name), "Request for nonexistent project setting: " + p_name + ".");
|
|
|
#ifdef DEBUG_METHODS_ENABLED
|
|
@@ -344,7 +349,7 @@ void ProjectSettings::_get_property_list(List<PropertyInfo> *p_list) const {
|
|
|
vc.name = E.key;
|
|
|
vc.order = v->order;
|
|
|
vc.type = v->variant.get_type();
|
|
|
- if (vc.name.begins_with("input/") || vc.name.begins_with("import/") || vc.name.begins_with("export/") || vc.name.begins_with("/remap") || vc.name.begins_with("/locale") || vc.name.begins_with("/autoload")) {
|
|
|
+ if (v->internal || vc.name.begins_with("input/") || vc.name.begins_with("importer_defaults/") || vc.name.begins_with("import/") || vc.name.begins_with("autoload/") || vc.name.begins_with("editor_plugins/") || vc.name.begins_with("shader_globals/")) {
|
|
|
vc.flags = PROPERTY_USAGE_STORAGE;
|
|
|
} else {
|
|
|
vc.flags = PROPERTY_USAGE_EDITOR | PROPERTY_USAGE_STORAGE;
|
|
@@ -890,7 +895,7 @@ Error ProjectSettings::_save_custom_bnd(const String &p_file) { // add other par
|
|
|
Error ProjectSettings::save_custom(const String &p_path, const CustomMap &p_custom, const Vector<String> &p_custom_features, bool p_merge_with_current) {
|
|
|
ERR_FAIL_COND_V_MSG(p_path.is_empty(), ERR_INVALID_PARAMETER, "Project settings save path cannot be empty.");
|
|
|
|
|
|
- PackedStringArray project_features = has_setting("application/config/features") ? (PackedStringArray)get_setting("application/config/features") : PackedStringArray();
|
|
|
+ PackedStringArray project_features = get_setting("application/config/features");
|
|
|
// If there is no feature list currently present, force one to generate.
|
|
|
if (project_features.is_empty()) {
|
|
|
project_features = ProjectSettings::get_required_features();
|
|
@@ -994,7 +999,7 @@ Error ProjectSettings::save_custom(const String &p_path, const CustomMap &p_cust
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-Variant _GLOBAL_DEF(const String &p_var, const Variant &p_default, bool p_restart_if_changed, bool p_ignore_value_in_docs, bool p_basic) {
|
|
|
+Variant _GLOBAL_DEF(const String &p_var, const Variant &p_default, bool p_restart_if_changed, bool p_ignore_value_in_docs, bool p_basic, bool p_internal) {
|
|
|
Variant ret;
|
|
|
if (!ProjectSettings::get_singleton()->has_setting(p_var)) {
|
|
|
ProjectSettings::get_singleton()->set(p_var, p_default);
|
|
@@ -1006,6 +1011,7 @@ Variant _GLOBAL_DEF(const String &p_var, const Variant &p_default, bool p_restar
|
|
|
ProjectSettings::get_singleton()->set_as_basic(p_var, p_basic);
|
|
|
ProjectSettings::get_singleton()->set_restart_if_changed(p_var, p_restart_if_changed);
|
|
|
ProjectSettings::get_singleton()->set_ignore_value_in_docs(p_var, p_ignore_value_in_docs);
|
|
|
+ ProjectSettings::get_singleton()->set_as_internal(p_var, p_internal);
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
@@ -1151,7 +1157,7 @@ void ProjectSettings::_add_builtin_input_map() {
|
|
|
action["events"] = events;
|
|
|
|
|
|
String action_name = "input/" + E.key;
|
|
|
- GLOBAL_DEF(action_name, action);
|
|
|
+ GLOBAL_DEF_INTERNAL(action_name, action);
|
|
|
input_presets.push_back(action_name);
|
|
|
}
|
|
|
}
|
|
@@ -1235,6 +1241,11 @@ ProjectSettings::ProjectSettings() {
|
|
|
|
|
|
GLOBAL_DEF("compression/formats/gzip/compression_level", Compression::gzip_level);
|
|
|
custom_prop_info["compression/formats/gzip/compression_level"] = PropertyInfo(Variant::INT, "compression/formats/gzip/compression_level", PROPERTY_HINT_RANGE, "-1,9,1");
|
|
|
+
|
|
|
+ // These properties will not show up in the dialog nor in the documentation. If you want to exclude whole groups, see _get_property_list() method.
|
|
|
+ GLOBAL_DEF_INTERNAL("application/config/features", PackedStringArray());
|
|
|
+ GLOBAL_DEF_INTERNAL("internationalization/locale/translation_remaps", PackedStringArray());
|
|
|
+ GLOBAL_DEF_INTERNAL("internationalization/locale/translations", PackedStringArray());
|
|
|
}
|
|
|
|
|
|
ProjectSettings::~ProjectSettings() {
|