Removed references to 'registering_order', as it was unused.
This commit is contained in:
parent
7e009a1671
commit
3528b29669
|
@ -524,10 +524,6 @@ bool ProjectSettings::has_setting(String p_var) const {
|
|||
return props.has(p_var);
|
||||
}
|
||||
|
||||
void ProjectSettings::set_registering_order(bool p_enable) {
|
||||
registering_order = p_enable;
|
||||
}
|
||||
|
||||
Error ProjectSettings::_load_settings_binary(const String &p_path) {
|
||||
Error err;
|
||||
FileAccess *f = FileAccess::open(p_path, FileAccess::READ, &err);
|
||||
|
|
|
@ -76,7 +76,6 @@ protected:
|
|||
}
|
||||
};
|
||||
|
||||
bool registering_order = true;
|
||||
int last_order = NO_BUILTIN_ORDER_BASE;
|
||||
int last_builtin_order = 0;
|
||||
Map<StringName, VariantContainer> props;
|
||||
|
@ -160,8 +159,6 @@ public:
|
|||
|
||||
bool is_using_datapack() const;
|
||||
|
||||
void set_registering_order(bool p_enable);
|
||||
|
||||
bool has_custom_feature(const String &p_feature) const;
|
||||
|
||||
Map<StringName, AutoloadInfo> get_autoload_list() const;
|
||||
|
|
Loading…
Reference in New Issue