You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-06 17:25:19 +00:00
has_setting now correctly returns true when the setting is present due to a feature tag
(cherry picked from commit d39e416c61)
This commit is contained in:
@@ -509,7 +509,11 @@ Error ProjectSettings::setup(const String &p_path, const String &p_main_pack, bo
|
||||
bool ProjectSettings::has_setting(String p_var) const {
|
||||
_THREAD_SAFE_METHOD_
|
||||
|
||||
return props.has(p_var);
|
||||
StringName name = p_var;
|
||||
if (!disable_feature_overrides && feature_overrides.has(name)) {
|
||||
name = feature_overrides[name];
|
||||
}
|
||||
return props.has(name);
|
||||
}
|
||||
|
||||
void ProjectSettings::set_registering_order(bool p_enable) {
|
||||
|
||||
Reference in New Issue
Block a user