Version: 2022.3
LanguageEnglish
  • C#

PhysicsShapeGroup2D Constructor

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public PhysicsShapeGroup2D(int shapeCapacity = 1, int vertexCapacity = 8);

Parameters

shapeCapacity The initial capacity of the PhysicsShape2D list used to contain the shapes.
vertexCapacity The initial capacity of the vertices list used to contain the shape geometry.

Description

Initializes and returns an instance of PhysicsShapeGroup2D. The shape group will be empty and ready for use by Collider2D.GetShapes, Rigidbody2D.GetShapes or manually adding shapes.

Both the shapeCapacity and vertexCapacity should be set high enough so that new allocations are not required and therefore no garbage collection work is produced.