Note about texture atlas
parent
8e26c5c066
commit
d28ea57083
12
src/tile.cpp
12
src/tile.cpp
|
@ -504,8 +504,16 @@ void TextureSource::buildMainAtlas()
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
A list of stuff to add. This should contain as much of the
|
A list of stuff to include in the texture atlas.
|
||||||
stuff shown in game as possible, to minimize texture changes.
|
|
||||||
|
It is a single-dimensional texture atlas due to the need to tile
|
||||||
|
textures.
|
||||||
|
|
||||||
|
It should contain as much of the stuff shown in game as possible,
|
||||||
|
to minimize texture changes.
|
||||||
|
|
||||||
|
It fills up quickly, so do not add anything that isn't contained
|
||||||
|
in most MapBlocks. E.g. mese isn't suitable but stone is.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
core::array<std::string> sourcelist;
|
core::array<std::string> sourcelist;
|
||||||
|
|
Loading…
Reference in New Issue