# Drawable Types & Textures

## **Cloth Drawable Types**

The game engine categorizes clothing and accessories into **components** (core character body parts) and **props** (additional accessories like glasses or hats). Each component or prop has a **drawable type ID** that defines the type of item it is (e.g., shirt, hat, or mask). Additionally, each component type has an associated **PV\_COMP** identifier, and each prop type has an **ANCHOR** identifier used internally by the game engine.

### **Components:**

Components are core body parts such as heads, torsos, or legs, and their associated PV\_COMP identifiers are as follows:

* **head**: Component ID 0, **PV\_COMP\_HEAD** (Ped Head / Face)
* **berd**: Component ID 1, **PV\_COMP\_BERD** (Big Masks)
* **hair**: Component ID 2, **PV\_COMP\_HAIR (Hairstyles)**
* **uppr**: Component ID 3, **PV\_COMP\_UPPR** (Torso & Gloves)
* **lowr**: Component ID 4, **PV\_COMP\_LOWR** (Pants/Trousers)
* **hand**: Component ID 5, **PV\_COMP\_HAND** (Backpacks)
* **feet**: Component ID 6, **PV\_COMP\_FEET** (Shoes)
* **teef**: Component ID 7, **PV\_COMP\_TEEF** (Parachute, Scuba tank etc.)
* **accs**: Component ID 8, **PV\_COMP\_ACCS** (Shirts to wear with top/jbib)
* **task**: Component ID 9, **PV\_COMP\_TASK** (Vests)
* **decl**: Component ID 10, **PV\_COMP\_DECL** (Shirt printings, Emblems etc)
* **jbib**: Component ID 11, **PV\_COMP\_JBIB** (Auxiliary parts for torso)

### **Props:**

Props are attachments like hats, glasses, or other accessories. The corresponding **ANCHOR** identifiers define how these props are connected to the character.

* **head**: Prop ID 0, **ANCHOR\_HEAD** (Hats, Helmets, Masks, Ear phones etc)
* **eyes**: Prop ID 1, **ANCHOR\_EYES** (Eye accessories like glasses)
* **ears**: Prop ID 2, **ANCHOR\_EARS** (Ear accessories like earrings)
* **mouth**: Prop ID 3, **ANCHOR\_MOUTH** (Unused in the game)
* **lhand**: Prop ID 4, **ANCHOR\_LEFT\_HAND** (Unused in the game)
* **rhand**: Prop ID 5, **ANCHOR\_RIGHT\_HAND** (Unused in the game)
* **lwrist**: Prop ID 6, **ANCHOR\_LEFT\_WRIST** (Watches, Chains etc)
* **rwrist**: Prop ID 7, **ANCHOR\_RIGHT\_WRIST** (Chains)
* **hip**: Prop ID 8, **ANCHOR\_HIP** (Unused in the game)
* **lfoot**: Prop ID 9, **ANCHOR\_LEFT\_FOOT** (Unused in the game)
* **rfoot**: Prop ID 10, **ANCHOR\_RIGHT\_FOOT** (Unused in the game)
* **unk1**: Prop ID 11, **ANCHOR\_PH\_L\_HAND** (Unused placeholder)
* **unk2**: Prop ID 12, **ANCHOR\_PH\_R\_HAND** (Unused placeholder)

Props are primarily used for head-related items like helmets and glasses, as well as wrist accessories. Other props, especially those like **mouth**, **hip**, **lfoot**, and **rfoot**, are **unused** in the game but exist in the system for completeness.

## **Texture Variations**

Each drawable can have up to **26 texture variations**, represented by letters from `a` to `z`. These variations allow for multiple looks for a single item of clothing. For example, a shirt could have different color options or patterns, each represented by a different texture variation.

* Texture variations are named in the order of `a` through `z`, meaning up to 26 distinct textures for a single drawable item.


---

# 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://docs.gta.clothing/game-mechanics/drawable-types-and-textures.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.
