File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Assets/FbxExporters/Editor Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1512,19 +1512,19 @@ public MeshInfo (Mesh mesh, Material[] materials)
1512
1512
}
1513
1513
1514
1514
public bool HasValidNormals ( ) {
1515
- return Normals != null && Normals . Length >= 0 ;
1515
+ return Normals != null && Normals . Length > 0 ;
1516
1516
}
1517
1517
1518
1518
public bool HasValidBinormals ( ) {
1519
1519
return HasValidNormals ( ) && HasValidTangents ( ) && Binormals != null ;
1520
1520
}
1521
1521
1522
1522
public bool HasValidTangents ( ) {
1523
- return Tangents != null && Tangents . Length >= 0 ;
1523
+ return Tangents != null && Tangents . Length > 0 ;
1524
1524
}
1525
1525
1526
1526
public bool HasValidVertexColors ( ) {
1527
- return VertexColors != null && VertexColors . Length >= 0 ;
1527
+ return VertexColors != null && VertexColors . Length > 0 ;
1528
1528
}
1529
1529
}
1530
1530
You can’t perform that action at this time.
0 commit comments