Represents a group of PhysicsShape2D and their geometry.
A shape group represents multiple PhysicsShape2D of the same or mixed PhysicsShapeType2D along with their geometry. It is comprised of a single list of vertices (GetShapeVertices) along with a list of PhysicsShape2D which refer to specific ranges of those vertices i.e. they index into the list of vertices. Some shape types (PhysicsShapeType2D) use a fixed number of vertices and some use a variable number of vertices therefore this single vertices list is a compact and efficient representation for multiple PhysicsShape2D in a group.
The shape group can be created by using the following methods:
Calling Collider2D.GetShapes where it would then represent all the shapes produced by that Collider2D
Calling Rigidbody2D.GetShapes where it would then represent all the shapes produced by all theCollider2D attached to that Rigidbody2D
Manually populating with custom shapes by calling AddCircle, AddCapsule, AddPolygon, AddBox or AddEdges.
localToWorldMatrix | Gets or sets a matrix that transforms the PhysicsShapeGroup2D vertices from local space into world space. |
shapeCount | The total number of PhysicsShape2D in the shape group. (Read Only) |
vertexCount | The total number of vertices in the shape group used to represent all PhysicsShape2D within it. (Read Only) |
PhysicsShapeGroup2D | 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. |
Add | Adds a copy of all the PhysicsShape2D and their geometry from the specified physicsShapeGroup into this shape group. The specified physicsShapeGroup is not modified. |
AddBox | Adds a box shape (PhysicsShapeType2D.Polygon) to the shape group. |
AddCapsule | Adds a capsule shape (PhysicsShapeType2D.Capsule) to the shape group. |
AddCircle | Adds a circle shape (PhysicsShapeType2D.Circle) to the shape group. |
AddEdges | Adds an edges shape (PhysicsShapeType2D.Edges) to the shape group. |
AddPolygon | Adds a polygon shape (PhysicsShapeType2D.Polygon) to the shape group. |
Clear | Clears all the vertices and shapes from the PhysicsShapeGroup. |
DeleteShape | When destroying a shape at the specified shapeIndex, all other shapes that exist above the specified shapeIndex will have their shape indices updated appropriately. |
GetShape | Gets the PhysicsShape2D stored at the specified shapeIndex. |
GetShapeData | Gets a copy of both the shapes and vertices in the PhysicsShapeGroup2D. |
GetShapeVertex | Gets a single vertex of a shape. The vertex index is zero-based with the shape having a quantity of vertex specified by PhysicsShape2D.vertexCount. |
GetShapeVertices | Gets a copy of the shape vertices in the PhysicsShapeGroup2D. |
SetShapeAdjacentVertices | Sets the adjacent vertices of a shape. |
SetShapeRadius | Sets the radius of a shape. |
SetShapeVertex | Sets a single vertex of a shape. |
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.