# Collider

Collider can be thought of as an invisible physical shape of an object. For example, a physical vase in your game will be represented by two separate shapes: a shape visible to the player—probably, a complex one—and a simplified invisible physical shape, a cylinder, to approximately match the visible part of your vase. The collider types you can use in MANU are described below:

### **Box**&#x20;

This is a rectangular cuboid that is useful for items such as crates or chests. You can also use a thin box collider as a floor, wall, or a ramp.

![](https://dl.dropboxusercontent.com/s/cz2jydsxtxaf78e/001.png?dl=0)

### **Sphere**&#x20;

This is a basic sphere-shaped element. It works well for balls, obviously, and other objects that need to roll and tumble, for example, falling boulders.

![](https://dl.dropboxusercontent.com/s/9gtdryah332r732/002.png?dl=0)

### **Capsule**&#x20;

This is an element that is made of two half-spheres joined together by a cylinder. It is suitable for pillars and can be combined with other colliders for unusual shapes.

![](https://dl.dropboxusercontent.com/s/j59i9x7l2pbbc2d/003.png?dl=0)

### **Plane**&#x20;

This is an element that implements a flat collision surface. Note that the plane collider is infinite.

![](https://dl.dropboxusercontent.com/s/3nlrwds0xn39jyh/006.png?dl=0)

### **Cylinder**&#x20;

This is a basic cylinder-shaped element that can be handy for creating posts, rods, and wheels.

![](https://dl.dropboxusercontent.com/s/lr08pjc56rqcjqh/004.png?dl=0)

### **Cone**&#x20;

This is a basic cone-shaped element. It is perfect for tree crowns. You can also use it to create compound colliders.

![](https://dl.dropboxusercontent.com/s/v8c7sdsakvmbdya/005.png?dl=0)

### **Convex** **hull**&#x20;

This is a shape that completely encloses a set of points. Convex hulls are usually used for imported objects of complex shapes. Note that convex hull colliders can be simplified to save computational resources.

![](https://dl.dropboxusercontent.com/s/xc1eedkx21rx10f/007.png?dl=0)

{% hint style="info" %}
Note that you can change collider parameters like position and size to suit your game needs. You can do it by using the Gizmo of an object or by changing the required parameters manually in the Inspector panel. Besides, you can use the Reset button next to the collider type to reset the collider settings to the default values, if necessary. See the image below.
{% endhint %}

![](https://dl.dropboxusercontent.com/s/2e3756le5mmaj0z/006.png?dl=0)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.manu.co/learn/manual/physics/collider-1.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
