PolygonCollider2D.CreatePrimitive
CreatePrimitive(sides: int, scale: Vector2 = Vector2.one, offset: Vector2 = Vector2.zero): void;
void CreatePrimitive(int sides, Vector2 scale = Vector2.one, Vector2 offset = Vector2.zero);
def CreatePrimitive(sides as int, scale as Vector2 = Vector2.one, offset as Vector2 = Vector2.zero) as void
Parameters

sides The number of sides in the polygon. This must be greater than two.
scale The X/Y scale of the polygon. These must be greater than zero.
offset The X/Y offset of the polygon.
Description

Creates as regular primitive polygon with the specified number of sides.