summaryrefslogtreecommitdiffstats
path: root/editor/plugins/mesh_library_editor_plugin.cpp
diff options
context:
space:
mode:
authorclayjohn <claynjohn@gmail.com>2021-04-13 20:45:16 -0700
committerclayjohn <claynjohn@gmail.com>2021-04-14 20:24:03 -0700
commit92731d292c66be637b837653044273c7000f63a3 (patch)
tree0b03005c4150a89e09ea49ec64c51662c89a0267 /editor/plugins/mesh_library_editor_plugin.cpp
parentb4b7c97d3839170180e4f3f7c2bd3179b374057a (diff)
downloadredot-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.cpp2
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);