# ClothSphereColliderPair

> A pair of SphereColliders used to define shapes for Cloth objects to collide against.

## Definition

* **Type:** Struct
* **Namespace:** [UnityEngine](/engine/6000.0/script-reference/unityengine.md)
* **Assembly:** UnityEngine.ClothModule

```csharp
public struct ClothSphereColliderPair
```

## Remarks

A ClothSphereColliderPair can contain either a single valid SphereCollider instance (with the second one being null), or a pair of two SphereColliders. In the former cases the ClothSphereColliderPair just represents a single SphereCollider for the cloth to collide against. In the latter case, it represents a conic capsule shape defined by the two spheres, and the cone connecting the two. Conic capsule shapes are useful for modelling limbs of a character.

Select the cloth object to see a visualization of Cloth colliders shapes in the Scene view.

## Constructors

| Constructor                                                                                                                                                                                                            | Description                                                                                                                                                                                                                                                                                |
| ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| [ClothSphereColliderPair(UnityEngine.SphereCollider)](/engine/6000.0/script-reference/unityengine/clothspherecolliderpair/ctor.md#clothspherecolliderpair\(spherecollider\))                                           | Creates a ClothSphereColliderPair. If only one SphereCollider is given, the ClothSphereColliderPair will define a simple sphere. If two SphereColliders are given, the ClothSphereColliderPair defines a conic capsule shape, composed of the two spheres and the cone connecting the two. |
| [ClothSphereColliderPair(UnityEngine.SphereCollider,UnityEngine.SphereCollider)](/engine/6000.0/script-reference/unityengine/clothspherecolliderpair/ctor.md#clothspherecolliderpair\(spherecollider-spherecollider\)) | Creates a ClothSphereColliderPair. If only one SphereCollider is given, the ClothSphereColliderPair will define a simple sphere. If two SphereColliders are given, the ClothSphereColliderPair defines a conic capsule shape, composed of the two spheres and the cone connecting the two. |

## Properties

| Property                                                                                | Description                                             |
| --------------------------------------------------------------------------------------- | ------------------------------------------------------- |
| [first](/engine/6000.0/script-reference/unityengine/clothspherecolliderpair/first.md)   | The first SphereCollider of a ClothSphereColliderPair.  |
| [second](/engine/6000.0/script-reference/unityengine/clothspherecolliderpair/second.md) | The second SphereCollider of a ClothSphereColliderPair. |
