> For the complete documentation index, see [llms.txt](https://wiki.terrarium.earth/athena/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.terrarium.earth/athena/pane-ctm.md).

# Pane CTM

Like Carpet CTM Pane CTM is the same as normal CTM but contains special culling.

### Identifier

```json
athena:pane_ctm
```

### Data

Carpet CTM requires 5 textures:

* `center` — Used for internal corners.
* `empty` — Used to fill in the middle of the texture.
* `horizontal` — Used for horizontal edges.
* `vertical` — Used for vertical edges.
* `particle` — Particle texture and the texture used for external corners.

{% tabs %}
{% tab title="Center" %}

<figure><img src="/files/EPdfgrnpxiLVpoUUKQrj" alt=""><figcaption><p>Center texture used for internal corners.</p></figcaption></figure>
{% endtab %}

{% tab title="Empty" %}

<figure><img src="/files/pWfCDzodYjW4o4nNYeM9" alt=""><figcaption><p>Empty texture used for empty middle.</p></figcaption></figure>
{% endtab %}

{% tab title="Horizontal" %}

<figure><img src="/files/IsUG3SDXE5UAd9Soz3tn" alt=""><figcaption><p>Horizontal texture used for horizontal edges</p></figcaption></figure>
{% endtab %}

{% tab title="Vertical" %}

<figure><img src="/files/QA5uuTYCxK3Xl3xqHgRQ" alt=""><figcaption><p>Vertical texture used for vertical edges</p></figcaption></figure>
{% endtab %}

{% tab title="Particle" %}

<figure><img src="/files/z2EYFFY2LWolnna4PQym" alt=""><figcaption><p>Particle texture used for external edges.</p></figcaption></figure>
{% endtab %}
{% endtabs %}

### Example

```json
{
  "variants": {
    "": {
      "model": "minecraft:block/air"
    }
  },
  
  "athena:loader": "athena:pane_ctm",
  "ctm_textures": {
    "center": "chipped:block/light_blue_stained_glass/ctm/fancy_light_blue_stained_glass_ctm/3",
    "empty": "chipped:block/light_blue_stained_glass/ctm/fancy_light_blue_stained_glass_ctm/0",
    "horizontal": "chipped:block/light_blue_stained_glass/ctm/fancy_light_blue_stained_glass_ctm/2",
    "particle": "chipped:block/light_blue_stained_glass/fancy_light_blue_stained_glass",
    "vertical": "chipped:block/light_blue_stained_glass/ctm/fancy_light_blue_stained_glass_ctm/1"
  }
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://wiki.terrarium.earth/athena/pane-ctm.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
