Merge pull request #51041 from foxydevloper/new-resources-snake-case

Name new resource files with `snake_case`
This commit is contained in:
Rémi Verschelde 2021-07-30 15:44:29 +02:00 committed by GitHub
commit 92c5c46da7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

View file

@ -408,7 +408,8 @@ void AnimationPlayerEditor::_animation_save_as(const Ref<Resource> &p_resource)
if (p_resource->get_name() != "") {
path = p_resource->get_name() + "." + extensions.front()->get().to_lower();
} else {
path = "new_" + p_resource->get_class().to_lower() + "." + extensions.front()->get().to_lower();
String resource_name_snake_case = p_resource->get_class().camelcase_to_underscore();
path = "new_" + resource_name_snake_case + "." + extensions.front()->get().to_lower();
}
}
}