# Change doors icon

## How to change the color

To change the icon colors, you can edit `doors_creator/integrations/cl_integrations.lua` file and edit the lines about color

```lua
-- r = red, g = green, b = blue, a = opacity
-- All values are from 0 to 255
-- If all colors are to 255, the image will have the default color
color = {
    r = 50,
    g = 255,
    b = 50,
    a = 255,
}
```

## How to change the icon/image

To change the icon/image, you can simply replace the images in `doors_creator/icons/` folder, be sure to use the same exact names

## How to change the size

The scale can be edited directly in the in-game menu, but you can also adjust the x and y values in case you need it in `doors_creator/integrations/cl_integrations.lua` file

```lua
-- image width
x = 0.03,

-- image height
y = 0.04,
```


---

# 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://documentation.jaksam-scripts.com/doors-creator/change-doors-icon.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.
