> For the complete documentation index, see [llms.txt](https://lua2.fatality.win/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lua2.fatality.win/api/instances/draw/types/accessor.md).

# Accessor

## accessor﻿ <a href="#accessor.md" id="accessor.md"></a>

Last modified: 03 January 2025

This type represents a safe way to access maps.

{% hint style="info" %}
Note that `<type>` indicates the specific type this instance holds. `Accessor<`[`Texture`](/api/instances/draw/managed/texture.md)`>` for example means that `Get` will return an instance of [`Texture`](/api/instances/draw/managed/texture.md), and `Set` will only accept the type [`Texture`](/api/instances/draw/managed/texture.md) as it's `obj` parameter.
{% endhint %}

## \_\_index﻿ <a href="#index" id="index"></a>

[<kbd><mark style="background-color:purple;">**Function**<mark style="background-color:purple;"></kbd>](#user-content-fn-1)[^1]

Returns an object by key.

**Arguments**

| Name  | Type     | Description |
| ----- | -------- | ----------- |
| `key` | `string` | Object key. |

**Returns**

| Type     | Description |
| -------- | ----------- |
| `<type>` | Object.     |

**Example**

```lua
local main_font = draw.fonts['gui_main'];

-- this also works
local main_font_2 = draw.fonts.gui_main;
```

***

## \_\_newindex﻿ <a href="#newindex" id="newindex"></a>

[<kbd><mark style="background-color:purple;">**Function**<mark style="background-color:purple;"></kbd>](#user-content-fn-1)[^1]

Sets an object by key.

**Arguments**

| Name  | Type     | Description |
| ----- | -------- | ----------- |
| `key` | `string` | Object key. |
| `obj` | `<type>` | Object.     |

**Returns**

Nothing.

**Example**

```lua
draw.fonts['my_font'] = my_font;

-- this also works
draw.fonts.my_font = my_font;
```

[^1]: This field is a function and must be invoked using a dot (.)


---

# 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://lua2.fatality.win/api/instances/draw/types/accessor.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.
