1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Fix inverted condition when unwrapping lightmap

This commit is contained in:
A Thousand Ships
2023-11-02 18:30:15 +01:00
parent da0b1eb128
commit 2cb94fa362

View File

@@ -367,7 +367,7 @@ void MeshInstance3DEditor::_menu_option(int p_option) {
}
uint64_t format = array_mesh->surface_get_format(i);
if (format & Mesh::ArrayFormat::ARRAY_FORMAT_NORMAL) {
if (!(format & Mesh::ArrayFormat::ARRAY_FORMAT_NORMAL)) {
err_dialog->set_text(TTR("Normals are required for lightmap unwrap."));
err_dialog->popup_centered();
return;