diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-04-15 07:57:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-15 07:57:15 +0200 |
commit | c7a4e2196ee08d7ec5190873bd243fbf2727c18f (patch) | |
tree | b1272043f63d4c8b003e20097f7709e2748b2a94 /modules/gltf | |
parent | 9e0f87359b9ae596fa99022ccdad015bd74680ae (diff) | |
parent | 92731d292c66be637b837653044273c7000f63a3 (diff) |
Merge pull request #47878 from clayjohn/rename-get_surface_material
Rename get_surface_material to get_surface_override_material
Diffstat (limited to 'modules/gltf')
-rw-r--r-- | modules/gltf/gltf_document.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gltf/gltf_document.cpp b/modules/gltf/gltf_document.cpp index c7a2779655..027a054b70 100644 --- a/modules/gltf/gltf_document.cpp +++ b/modules/gltf/gltf_document.cpp @@ -4959,8 +4959,8 @@ GLTFMeshIndex GLTFDocument::_convert_mesh_instance(Ref<GLTFState> state, MeshIns if (godot_array_mesh.is_valid()) { surface_name = godot_array_mesh->surface_get_name(surface_i); } - if (p_mesh_instance->get_surface_material(surface_i).is_valid()) { - mat = p_mesh_instance->get_surface_material(surface_i); + if (p_mesh_instance->get_surface_override_material(surface_i).is_valid()) { + mat = p_mesh_instance->get_surface_override_material(surface_i); } if (p_mesh_instance->get_material_override().is_valid()) { mat = p_mesh_instance->get_material_override(); |