Create
Create a body using PhysicsBodyDefinition.defaultDefinition in the specified world.
Read time 1 minuteLast updated 8 days ago
Definition
- Type: Method
- Namespace: UnityEngine.LowLevelPhysics2D
- Assembly: UnityEngine.Physics2DModule
Create(PhysicsWorld)
Create a body using PhysicsBodyDefinition.defaultDefinition in the specified world.
public static PhysicsBody Create(PhysicsWorld world)
Parameters
The world to create the body in.
Returns
Type | Description |
|---|---|
| PhysicsBody | The created body. |
Create(PhysicsWorld, PhysicsBodyDefinition)
Create a body in the specified world.
public static PhysicsBody Create(PhysicsWorld world, PhysicsBodyDefinition definition)
Parameters
The world to create the body in.
The body definition to use.
Returns
Type | Description |
|---|---|
| PhysicsBody | The created body. |