mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 14:11:15 +00:00
Improve ConfigFile get_sections and get_section_keys by returning Vector<String>
This commit is contained in:
parent
931820d33c
commit
b8e44a0000
20 changed files with 58 additions and 105 deletions
|
|
@ -889,8 +889,7 @@ Vector<uint64_t> AnimationLibraryEditor::_load_mixer_libs_folding() {
|
|||
//The scene/mixer combination is no longer valid and we'll try to recover
|
||||
uint64_t current_mixer_id = uint64_t(mixer->get_instance_id());
|
||||
String current_mixer_signature = _get_mixer_signature();
|
||||
List<String> sections;
|
||||
config->get_sections(§ions);
|
||||
Vector<String> sections = config->get_sections();
|
||||
|
||||
for (const String §ion : sections) {
|
||||
Variant mixer_id = config->get_value(section, "mixer");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue