# PhysicsWorld.DrawOptions

> Draw Options limits what gets drawn to a broad selection.

## Definition

* **Type:** Enum
* **Namespace:** [Unity.U2D.Physics](/engine/6000.5/script-reference/unity/u2d/physics.md)
* **Assembly:** UnityEngine.PhysicsCore2DModule

```csharp
[Flags]
public enum PhysicsWorld.DrawOptions
```

## Fields

| Value                                                                                                                    | Description                                                                                                |
| ------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------- |
| [AllBodies](/engine/6000.5/script-reference/unity/u2d/physics/physicsworld/drawoptions/allbodies.md)                     | Draw all bodies in the world.                                                                              |
| [AllContactForces](/engine/6000.5/script-reference/unity/u2d/physics/physicsworld/drawoptions/allcontactforces.md)       | Draw all the contact forces in the world.                                                                  |
| [AllContactFriction](/engine/6000.5/script-reference/unity/u2d/physics/physicsworld/drawoptions/allcontactfriction.md)   | Draw all the contact friction (tangent) in the world.                                                      |
| [AllContactNormal](/engine/6000.5/script-reference/unity/u2d/physics/physicsworld/drawoptions/allcontactnormal.md)       | Draw all the contact normals in the world.                                                                 |
| [AllContactPoints](/engine/6000.5/script-reference/unity/u2d/physics/physicsworld/drawoptions/allcontactpoints.md)       | Draw all the contact points in the world.                                                                  |
| [AllCustom](/engine/6000.5/script-reference/unity/u2d/physics/physicsworld/drawoptions/allcustom.md)                     | Draw all the custom drawing.                                                                               |
| [AllJoints](/engine/6000.5/script-reference/unity/u2d/physics/physicsworld/drawoptions/alljoints.md)                     | Draw all the joints in the world.                                                                          |
| [AllShapeBounds](/engine/6000.5/script-reference/unity/u2d/physics/physicsworld/drawoptions/allshapebounds.md)           | Draw all the shape bounds in the world.                                                                    |
| [AllShapes](/engine/6000.5/script-reference/unity/u2d/physics/physicsworld/drawoptions/allshapes.md)                     | Draw all the shapes in the world.                                                                          |
| [AllSolverIslands](/engine/6000.5/script-reference/unity/u2d/physics/physicsworld/drawoptions/allsolverislands.md)       | Draw all the solver islands in the world.                                                                  |
| [DefaultAll](/engine/6000.5/script-reference/unity/u2d/physics/physicsworld/drawoptions/defaultall.md)                   | The default drawing when drawing all. Draw all the shapes, joints and custom drawing in the world.         |
| [DefaultSelected](/engine/6000.5/script-reference/unity/u2d/physics/physicsworld/drawoptions/defaultselected.md)         | The default drawing when drawing selections. Draw selected shapes, joints and custom drawing in the world. |
| [Off](/engine/6000.5/script-reference/unity/u2d/physics/physicsworld/drawoptions/off.md)                                 | No drawing.                                                                                                |
| [SelectedBodies](/engine/6000.5/script-reference/unity/u2d/physics/physicsworld/drawoptions/selectedbodies.md)           | Draw the selected bodies.                                                                                  |
| [SelectedJoints](/engine/6000.5/script-reference/unity/u2d/physics/physicsworld/drawoptions/selectedjoints.md)           | Draw the selected joints.                                                                                  |
| [SelectedShapeBounds](/engine/6000.5/script-reference/unity/u2d/physics/physicsworld/drawoptions/selectedshapebounds.md) | Draw the selected shape bounds.                                                                            |
| [SelectedShapes](/engine/6000.5/script-reference/unity/u2d/physics/physicsworld/drawoptions/selectedshapes.md)           | Draw the selected shapes.                                                                                  |
