> 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/pillar.md).

# Pillar

Pillar is a ctm for axis blocks which have an axis property and extend like CTM.

### Identifier

```json
athena:pillar
```

### Data

Pillar requires 5 textures:

* `center` — Used for the middle of the pillar.
* `top` — Used for the top of the pillar.
* `bottom` — Used for the bottom of the pillar.
* `self` — Used for the side when the pillar is a single block.
* `particle` — Particle texture and the texture used for the ends of the pillar.

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

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

{% tab title="Top" %}

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

{% tab title="Bottom" %}

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

{% tab title="Self" %}

<figure><img src="/files/TjO6Kcd4j15BIf2zt5sn" alt=""><figcaption></figcaption></figure>
{% endtab %}

{% tab title="Particle" %}

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

### Example

```json
{
  "variants": {
    "": {
      "model": "minecraft:block/air"
    }
  },
  
  "athena:loader": "athena:pillar",
  "ctm_textures": {
    "bottom": "chipped:block/amethyst_block/ctm/curly_amethyst_block_pillar/3",
    "center": "chipped:block/amethyst_block/ctm/curly_amethyst_block_pillar/2",
    "particle": "chipped:block/amethyst_block/curly_amethyst_block_pillar",
    "self": "chipped:block/amethyst_block/ctm/curly_amethyst_block_pillar/0",
    "top": "chipped:block/amethyst_block/ctm/curly_amethyst_block_pillar/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/pillar.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.
