From e3fdacdf90477da67a06681cf101255374cc070c Mon Sep 17 00:00:00 2001 From: Saracen Date: Wed, 17 Jan 2018 03:39:06 +0000 Subject: [PATCH] Expose 'lightmap_unwrap' method to the scripting engine. --- scene/resources/mesh.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scene/resources/mesh.cpp b/scene/resources/mesh.cpp index d59390e1b8e..949ba12a4c7 100644 --- a/scene/resources/mesh.cpp +++ b/scene/resources/mesh.cpp @@ -1267,6 +1267,8 @@ void ArrayMesh::_bind_methods() { ClassDB::set_method_flags(get_class_static(), _scs_create("center_geometry"), METHOD_FLAGS_DEFAULT | METHOD_FLAG_EDITOR); ClassDB::bind_method(D_METHOD("regen_normalmaps"), &ArrayMesh::regen_normalmaps); ClassDB::set_method_flags(get_class_static(), _scs_create("regen_normalmaps"), METHOD_FLAGS_DEFAULT | METHOD_FLAG_EDITOR); + ClassDB::bind_method(D_METHOD("lightmap_unwrap"), &ArrayMesh::lightmap_unwrap); + ClassDB::set_method_flags(get_class_static(), _scs_create("lightmap_unwrap"), METHOD_FLAGS_DEFAULT | METHOD_FLAG_EDITOR); ClassDB::bind_method(D_METHOD("get_faces"), &ArrayMesh::get_faces); ClassDB::bind_method(D_METHOD("generate_triangle_mesh"), &ArrayMesh::generate_triangle_mesh);