blob: e2861a3a6e8f247c9fd3ba0247cd8fabd97b3def (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Textures
The textures are located in the Textures directory of the package. Textures can be in any format Raylib does.
The directory should contain the `Meta.json` file with the following strcture:
```
{
"Avaliable": string[]
}
```
Names of the files should be written in the array. After that you should be able to access the texture with following query:
`<package name>/<texture name (including the file extention)>`
|