diff options
author | clayjohn <claynjohn@gmail.com> | 2021-04-13 20:45:16 -0700 |
---|---|---|
committer | clayjohn <claynjohn@gmail.com> | 2021-04-14 20:24:03 -0700 |
commit | 92731d292c66be637b837653044273c7000f63a3 (patch) | |
tree | 0b03005c4150a89e09ea49ec64c51662c89a0267 /editor/plugins/mesh_library_editor_plugin.cpp | |
parent | b4b7c97d3839170180e4f3f7c2bd3179b374057a (diff) | |
download | redot-engine-92731d292c66be637b837653044273c7000f63a3.tar.gz |
Rename get_surface_material to get_surface_override_material
Diffstat (limited to 'editor/plugins/mesh_library_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/mesh_library_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/mesh_library_editor_plugin.cpp b/editor/plugins/mesh_library_editor_plugin.cpp index f8932cd534..6f1f243444 100644 --- a/editor/plugins/mesh_library_editor_plugin.cpp +++ b/editor/plugins/mesh_library_editor_plugin.cpp @@ -93,7 +93,7 @@ void MeshLibraryEditor::_import_scene(Node *p_scene, Ref<MeshLibrary> p_library, mesh = mesh->duplicate(); for (int j = 0; j < mesh->get_surface_count(); ++j) { - Ref<Material> mat = mi->get_surface_material(j); + Ref<Material> mat = mi->get_surface_override_material(j); if (mat.is_valid()) { mesh->surface_set_material(j, mat); |