# Hologram

Using this you setup the Crate hologram.\
The crate hologram is only visible while no fail/open animation is being played! When fail/open animation is started, the hologram is hidden

## Settings

### Offset

Offset of the hologram location

example:

<pre class="language-yaml"><code class="lang-yaml"><strong>offset: "0;3;0" # x;y;z
</strong></code></pre>

## Static Hologram

```yaml
hologram:
  offset: "0;3;0"
  lines:
    - type: "text"
      stay: 20
      text: "<gradient:#8833de:#5424a6>Another Frame\n&f\n&7[Left-Click] &fto Preview\n&7[Right-Click] &fto Open\n&7[Shift-Right-Click] &fto quick Open"
      line-width: 200
      height: 0.5
      has-shadow: true
      is-see-through: false
      default-background: false
      background-color: "255;255;255;0"
```

## Animated Hologram

```yaml
hologram:
  offset: "0;3;0"
  lines:
    - type: "animated"
      height: 0.5
      frames:
        - type: "text"
          stay: 20
          text: "<gradient:#8833de:#5424a6>Another Frame\n&f\n&7[Left-Click] &fto Preview\n&7[Right-Click] &fto Open\n&7[Shift-Right-Click] &fto quick Open"
          line-width: 200
          height: 0.5
          has-shadow: true
          is-see-through: false
          default-background: false
          background-color: "255;255;255;0"
        - type: "text"
          stay: 20
          text: "<gradient:#8833de:#5424a6>Example Crate\n&f\n&7[Left-Click] &fto Preview\n&7[Right-Click] &fto Open\n&7[Shift-Right-Click] &fto quick Open"
          line-width: 200
          height: 0.5
          has-shadow: true
          is-see-through: false
          default-background: true
```

## Lines Types

### text

This line type uses Text Display in order to display the hologram line.

**Options:**

* text - the text of the line ("\n" is possible ot use)
* height - height of the line (used for calculation of spaces between lines)
* line-width - width of the text display (default: 150)
* scale - scale of the text display (default: 1.0)
* billboard - billboard of the display, depending on the billboard the line is being rotated (default: CENTER, possible values: FIXED, VERTICAL, HORIZONTAL, CENTER)&#x20;
* conditions - view conditions of the line (optional...)
* fail-line - a line that should be displayed when the conditions are not met
* has-shadow (default: false)
* default-background - when true default background color is being used, otherwise background-color is used
* background-color - color of the background, default-background has to be set to false (example: "255;255;255;255" - red, green, blue, alpha)
* is-see-through (default: true)

### item

### animated


---

# 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://mrlarkyy.gitbook.io/aquaticcrates-v3/configuring/crate/hologram.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.
