diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-02-18 13:25:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-18 13:25:09 +0100 |
commit | 4fe0f1161e122f25e8b382bc0762954f580f82d6 (patch) | |
tree | baa34ce44dbea3d6a889c5d0fb8712df30f360fc | |
parent | a748defeea5817667fcc4c042a22411c6c743904 (diff) | |
parent | efc1eba9747b5b2aeb3cc4e17be852825ffdfd68 (diff) |
Merge pull request #46159 from gongpha/jr-_-fix-function-binding
Fixes function bindings
-rw-r--r-- | editor/import/scene_importer_mesh.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/import/scene_importer_mesh.cpp b/editor/import/scene_importer_mesh.cpp index 78a7cd84f1..46eb4e4fdc 100644 --- a/editor/import/scene_importer_mesh.cpp +++ b/editor/import/scene_importer_mesh.cpp @@ -444,7 +444,7 @@ void EditorSceneImporterMesh::_bind_methods() { ClassDB::bind_method(D_METHOD("set_blend_shape_mode", "mode"), &EditorSceneImporterMesh::set_blend_shape_mode); ClassDB::bind_method(D_METHOD("get_blend_shape_mode"), &EditorSceneImporterMesh::get_blend_shape_mode); - ClassDB::bind_method(D_METHOD("add_surface", "primitive", "arrays", "blend_shapes", "lods", "material"), &EditorSceneImporterMesh::add_surface, DEFVAL(Array()), DEFVAL(Dictionary()), DEFVAL(Ref<Material>()), DEFVAL(String())); + ClassDB::bind_method(D_METHOD("add_surface", "primitive", "arrays", "blend_shapes", "lods", "material", "name"), &EditorSceneImporterMesh::add_surface, DEFVAL(Array()), DEFVAL(Dictionary()), DEFVAL(Ref<Material>()), DEFVAL(String())); ClassDB::bind_method(D_METHOD("get_surface_count"), &EditorSceneImporterMesh::get_surface_count); ClassDB::bind_method(D_METHOD("get_surface_primitive_type", "surface_idx"), &EditorSceneImporterMesh::get_surface_primitive_type); |