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
- [Quality Hackweek] Activated Terrain Inspector is active only until the terrain GameObject is deselected when two or more Inspectors are open
- Physics Used Memory keeps growing when GameObject colliders are enabled and disabled
- Errors are thrown and Inspector's UI element is not drawing when a GameObject with script component using a List<T> attached is selected
- ConfigurableJoint's parameters are not saved in the Prefab after Runtime Prefab baking
- Popup windows spawn on the incorrect monitor when the Editor is placed near the boundary of scaled monitor next to a monitor with different scaling
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 !!