x


Question on veretexes.

I know I can access a certain vertex or triangle through "vertex = mesh.vertices [Vector3(0,1,0)]", but in my script in need to hide that specific triangle. I look on the unity scripting reference but found nothing. Maybe you guys can help me out? How do I hide a specific triangle of a simple mesh through script?

more ▼

asked Apr 08 '12 at 10:48 PM

vipvex gravatar image

vipvex
29 16 27 30

(comments are locked)
10|3000 characters needed characters left

1 answer: sort voted first

When a mesh is created, the mesh is defined as an array of vertices (points in 3D space). Let is try to imagine a simple square. This is composed of 4 vertices. However, there are two triangles. A triangle is composed of a set of 3 vertices. If we wanted to describe a square by providing 2 triangles, you would then notice that we would have to provide 6 vertices (2 triangles = 2 * triangle = 2 * 3 * vertices = 6 vertices). As the complexity of the mesh increases, so would the number of vertices. An optimization is to provide only the unique vertices and then each triangle would provide 3 indices into the vertex array to say which vertices make up that triangle. Since vertices are commonly reused when you draw meshes, the result is needing to provide fewer total vertices.

So ... to your question ... in order to "remove" a triangle from a mesh, you would get the "triangles" property of the mesh, find the triple corresponding to the triangle to remove and then set the "triangles" property to be the new int array with the triangle to be removed tripple removed from the array.

more ▼

answered Apr 08 '12 at 11:59 PM

kolban gravatar image

kolban
1.8k 2 7

(comments are locked)
10|3000 characters needed characters left
Your answer
toggle preview:

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Topics:

x1356
x77
x33
x26

asked: Apr 08 '12 at 10:48 PM

Seen: 392 times

Last Updated: Apr 08 '12 at 11:59 PM