Browse Source

Bindings: Fix missing default value

(cherry picked from commit 068b58b3ce3d86e4b5ebf3637fb21a70d786b00e)
Ignacio Etcheverry 9 năm trước cách đây
mục cha
commit
55a5631986
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      servers/visual_server.cpp

+ 1 - 1
servers/visual_server.cpp

@@ -382,7 +382,7 @@ void VisualServer::_bind_methods() {
 
 
 	ObjectTypeDB::bind_method(_MD("mesh_create"),&VisualServer::mesh_create);
-	ObjectTypeDB::bind_method(_MD("mesh_add_surface"),&VisualServer::mesh_add_surface, DEFVAL(NO_INDEX_ARRAY));
+	ObjectTypeDB::bind_method(_MD("mesh_add_surface"),&VisualServer::mesh_add_surface, DEFVAL(Array()), DEFVAL(false));
 	ObjectTypeDB::bind_method(_MD("mesh_surface_set_material"),&VisualServer::mesh_surface_set_material,DEFVAL(false));
 	ObjectTypeDB::bind_method(_MD("mesh_surface_get_material"),&VisualServer::mesh_surface_get_material);