ConvexPolygonShape2D

Inherits: Shape2D < Resource < Reference < Object Convex polygon shape for 2D physics.

Description

Convex polygon shape for 2D physics. A convex polygon, whatever its shape, is internally decomposed into as many convex polygons as needed to ensure all collision checks against it are always done on convex polygons (which are faster to check). ConvexPolygonShape2D and a ConcavePolygonShape2D is that a concave polygon assumes it is concave and uses a more complex method of collision detection, and a convex one forces itself to be convex in order to speed up collision detection.

Properties

Methods

Property Descriptions

  • PoolVector2Array points set_point_cloud to generate a convex hull shape from concave shape points.

    Method Descriptions

  • set_point_cloud ( PoolVector2Array point_cloud ) points property using the convex hull algorithm. Removing all unneeded points. See Geometry.convex_hull_2d for details.