textures_list.json

General Overview

The textures_list file is Minecraft's way of caching each texture so that it can retrieve it faster than looking through each image in your textures folder. This is especially important when you have an abundance of textures, where Minecraft could potentially mess up and swap textures or even not load them at all. Minecraft tends to throw a content log warning if you don't have the textures listed in the file. You can ignore it if you have a small amount, but it is recommended that you list the textures anyway.

What textures can be used in the file?

Any texture! Any textures can and should be used in the textures_list.json file for best practice and performance.

File Structure

The structure is simple. The file itself is in RP/textures and is named textures_list.json. The file includes the file path to every texture you want in the file:

RP/textures/textures_list.jsonCopy
json
[
	"textures/blocks/foo",
	"textures/blocks/bar",

	"textures/items/foo",
	"textures/items/bar",

	"textures/models/foo",
	"textures/models/bar",

	"textures/entity/foo",
	"textures/entity/bar"
]
1
2
3
4
5
6
7
8
9
10
11
12
13

Automating

If you have a lot of textures, this could obviously be tedious to go and list all the texture paths. In this case you can start to use Regolith with its wonderful filters.

Contributors

SirLich