Search Issue Tracker
Fixed in 5.2.0
Votes
0
Found in
5.1.0f3
Issue ID
704186
Regression
Yes
[Mesh] "Failed getting triangles. Submesh topology is lines or points" error when .triangles called on empty mesh
1. Mesh mesh = new Mesh();
2. Debug.Log(mesh.triangles);
3. Get the error! (which doesn't cause anything bad, but is annoying)
Seems to be regression starting with 5.1
Comments (5)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Shader Graph Node information is briefly displayed in Graph Inspector when clicking on Category in the Blackboard
- Module installation fails with "Download failed: Validation Failed" errors when using beta.2 Hub version
- JsonConvert conversion fails trying to call GetCallbackMethodsForType when [OnDeserialized] is used in a class
- Shader Graph Category dropdown cannot be expanded/collapsed when clicking on the text
- Different text alignment in the column header in Entities "System" window
mikelortega
Jul 16, 2015 06:53
@psyco92 @critic The problem is that if you need to access the mesh's triangles just checking mesh.vertexCount is not an option. Mesh.GetTriangles(int submesh) also shows the error message.
Psyco92
Jul 14, 2015 19:47
Thank you critic! mesh.vertexCount check before the mesh.triangles call worked :)
mikelortega
Jul 10, 2015 13:01
Unity 5.1.1p4 still has this problem. In what version will it be solved?
Does anyone have a workaround? At the moment I have to stay in 5.0
Thank you.
critic
Jul 06, 2015 17:29
Have the same problem (5.1.1f1), you can check Mesh.vertexCount to see if the triangle array is empty.
kami_sakura
Jun 25, 2015 14:37
same problem here need help !!