Fix hasTangentsAndBitangents method in AiMesh.java (#6345)

original code m_tangents != null && m_tangents != null; triggers error prone

Co-authored-by: Kim Kulling <kimkulling@users.noreply.github.com>
This commit is contained in:
fifth_light
2025-09-18 16:09:43 +08:00
committed by GitHub
parent 45cb880835
commit 5c568616ec

View File

@@ -314,7 +314,7 @@ public final class AiMesh {
* @return true if tangents and bitangents are available
*/
public boolean hasTangentsAndBitangents() {
return m_tangents != null && m_tangents != null;
return m_tangents != null && m_bitangents != null;
}