Draw polygon between vertices

Draw polygon between vertices

unity2dtutorial
Observer Observer
556 Views
1 Reply
Message 1 of 2

Draw polygon between vertices

unity2dtutorial
Observer
Observer

How can I select for example 20 vertices and draw a polygon for them?

 

 

1.png

0 Likes
557 Views
1 Reply
Reply (1)
Message 2 of 2

Kahylan
Advisor
Advisor

Hi!

 

There are Multiple ways to do this.

 

The easiest is probably using the "Mesh>Fill Hole" command, but that will leave you with an N-Gon that you then have to cut up into quads.

You can also use the "Mesh Tools>Append Polygon" tool and draw multiple polygons between the edges.

Or you select edges on opposite sides and use the "Edit Mesh>Bridge" command.

 

Or you use a combination of those tools. For a hole with 20 vertices I would normals use 4 edges on opposite sides and use a bridge command with 3 Divisions, then bridge between the middle two edges on each side which leaves 4 holes with 4 edges on which I use the Fill hole command.

 

Bridge_1.png

Bridge_2.png

Fill_hole.png

I hope this helps!