1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-13 13:31:48 +00:00

Change ClassDB::get_inheriters_from_class.

This commit is contained in:
Yufeng Ying
2025-01-08 20:21:08 +08:00
parent 27b2ba667c
commit 4029051bb1
12 changed files with 23 additions and 23 deletions

View File

@@ -1531,8 +1531,8 @@ ProjectExportDialog::ProjectExportDialog() {
resources_vb->add_child(server_strip_message);
{
List<StringName> resource_names;
ClassDB::get_inheriters_from_class("Resource", &resource_names);
LocalVector<StringName> resource_names;
ClassDB::get_inheriters_from_class("Resource", resource_names);
PackedStringArray strippable;
for (const StringName &resource_name : resource_names) {