<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.sasgaming.net/index.php?action=history&amp;feed=atom&amp;title=Minecraft%3AAtlas</id>
	<title>Minecraft:Atlas - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.sasgaming.net/index.php?action=history&amp;feed=atom&amp;title=Minecraft%3AAtlas"/>
	<link rel="alternate" type="text/html" href="https://wiki.sasgaming.net/index.php?title=Minecraft:Atlas&amp;action=history"/>
	<updated>2026-04-22T16:25:56Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://wiki.sasgaming.net/index.php?title=Minecraft:Atlas&amp;diff=95470&amp;oldid=prev</id>
		<title>SyncBot: Sync: new page from Minecraft</title>
		<link rel="alternate" type="text/html" href="https://wiki.sasgaming.net/index.php?title=Minecraft:Atlas&amp;diff=95470&amp;oldid=prev"/>
		<updated>2026-04-22T11:05:52Z</updated>

		<summary type="html">&lt;p&gt;Sync: new page from Minecraft&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Exclusive|java}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Atlases&amp;#039;&amp;#039;&amp;#039; are configuration files in [[Minecraft:resource pack]]s, that control which textures are included in the atlases.&lt;br /&gt;
&lt;br /&gt;
== JSON format ==&lt;br /&gt;
Atlases are stored as [[Minecraft:JSON]] files in a resource pack in the &amp;lt;code&amp;gt;assets/&amp;#039;&amp;#039;&amp;lt;namespace&amp;gt;&amp;#039;&amp;#039;/atlases&amp;lt;/code&amp;gt; folder.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;treeview&amp;quot;&amp;gt;&lt;br /&gt;
*{{nbt|compound}} The root tag.&lt;br /&gt;
**{{nbt|list|sources}}: Contains a list of sprite sources. Every entry runs in during load, in order of definition, adding or removing new textures to the atlas.&lt;br /&gt;
***{{nbt|compound}} Source element.&lt;br /&gt;
****{{nbt|string|type}}: The type of the sprite source. Can be one of the following:&lt;br /&gt;
*****&amp;#039;&amp;#039;directory&amp;#039;&amp;#039;: Lists all files in a directory and its subdirectories, across all namespaces.&lt;br /&gt;
******{{nbt|string|source}}: Directory in pack to be listed (relative to {{code|textures}} directory).&lt;br /&gt;
******{{nbt|string|prefix}}: String to be prefixed to the sprite name when loaded.&lt;br /&gt;
*****&amp;#039;&amp;#039;single&amp;#039;&amp;#039;: Adds a single file.&lt;br /&gt;
******{{nbt|string|resource}}: Location of a resource within the pack (relative to {{code|textures}} directory, implied {{code|.png}} extension).&lt;br /&gt;
******{{nbt|string|sprite}}: Sprite name (optional, defaults to the value of {{code|resource}}).&lt;br /&gt;
*****&amp;#039;&amp;#039;filter&amp;#039;&amp;#039;: Removes sprites matching the given pattern (only works for entries already in the list).&lt;br /&gt;
******{{nbt|compound|pattern}}&lt;br /&gt;
*******{{nbt|string|namespace}}: {{W|Regular expression}} of the namespace indentificator to be removed, if omitted, any value is matched.&lt;br /&gt;
*******{{nbt|string|path}}: Regular expression of the path to be removed, if omitted, any value is matched.&lt;br /&gt;
*****&amp;#039;&amp;#039;unstitch&amp;#039;&amp;#039;: Copies rectangular regions from other images.&lt;br /&gt;
******{{nbt|string|resource}}: Location of a resource within the pack (relative to {{code|textures}} directory, implied {{code|.png}} extension).&lt;br /&gt;
******{{nbt|double|divisor_x}}: Used for determining the units used by in the {{code|x}} coordinate of regions.&lt;br /&gt;
******{{nbt|double|divisor_y}}: Used for determining the units used by in the {{code|y}} coordinate of regions.&lt;br /&gt;
******{{nbt|list|regions}}: List of regions to copy from the source image.&lt;br /&gt;
*******{{nbt|string|sprite}}: Specifies the sprite name.&lt;br /&gt;
*******{{nbt|double|x}}: Specifies the {{code|x}} coordinate of the top-left corner of the region.&lt;br /&gt;
*******{{nbt|double|y}}: Specifies the {{code|y}} coordinate of the top-left corner of the region.&lt;br /&gt;
*******{{nbt|double|width}}: Specifies the width of the region.&lt;br /&gt;
*******{{nbt|double|height}}: Specifies the height of the region.&lt;br /&gt;
*****&amp;#039;&amp;#039;paletted_permutations&amp;#039;&amp;#039;: Dynamically generate textures in-memory with color sets.&lt;br /&gt;
******{{nbt|list|textures}}: A list of namespaced [[Minecraft:resource location]]s of base textures. These textures are used to generate variants of them that have been modified by color palettes.&lt;br /&gt;
******{{nbt|string|separator}}: A value that is used when joining texture and permutation names to produce sprite name. Defaults to {{cd|_}}.&lt;br /&gt;
******{{nbt|string|palette_key}}: A namespaced resource location of a color palette key file. This is used to define the set of key pixel colors to swap out with the color palettes defined.&lt;br /&gt;
******{{nbt|compound|permutations}}: A map of permutations from suffix to a namespaced resource location of a color palette file. The suffix is appended to the resource location of the output variant textures, with the string specified in &amp;lt;code&amp;gt;separator&amp;lt;/code&amp;gt; separating the suffix and the base texture name. The number of pixels in each color palette must be the same as that of the palette_key defined for this source. Pixels are compared by RGB value. The alpha channel is ignored for key matching, but in the resulting texture the alpha channel is multiplied with the color palette&amp;#039;s alpha channel. Pixels that do not match the palette_key are copied over to the resulting texture as-is.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== List of atlases ==&lt;br /&gt;
* &amp;lt;code&amp;gt;armor_trims&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;banner_patterns&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;blocks&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;celestials&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;chests&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;decorated_pot&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;gui&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;items&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;map_decorations&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;paintings&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;particles&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;shield_patterns&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;shulker_boxes&amp;lt;/code&amp;gt;&lt;br /&gt;
* &amp;lt;code&amp;gt;signs&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
{{HistoryTable&lt;br /&gt;
|{{HistoryLine|java}}&lt;br /&gt;
|{{HistoryLine||1.19.3|dev=22w46a|Added atlases to [[Minecraft:resource pack]]s.}}&lt;br /&gt;
|{{HistoryLine|||dev=23w04a|Added the sprite source &amp;lt;code&amp;gt;paletted_permutations&amp;lt;/code&amp;gt;.}}&lt;br /&gt;
|{{HistoryLine||1.19.4|dev=23w04a|Added the &amp;lt;code&amp;gt;armor_trims&amp;lt;/code&amp;gt; atlas.}}&lt;br /&gt;
|{{HistoryLine|||dev=Pre-release 1|Added the &amp;lt;code&amp;gt;decorated_pot&amp;lt;/code&amp;gt; atlas.}}&lt;br /&gt;
|{{HistoryLine||1.20.2|dev=23w31a|Added the &amp;lt;code&amp;gt;gui&amp;lt;/code&amp;gt; atlas.}}&lt;br /&gt;
|{{HistoryLine||1.20.5|dev=24w12a|Added the &amp;lt;code&amp;gt;map_decorations&amp;lt;/code&amp;gt; atlas.}}&lt;br /&gt;
|{{HistoryLine||1.21.5|dev=25w04a|{{cd|minecraft:paletted_permutations}} sprite source has a new field, {{cd|separator}}.}}&lt;br /&gt;
|{{HistoryLine||1.21.6|dev=25w19a|The &amp;lt;code&amp;gt;mob_effects&amp;lt;/code&amp;gt; atlas has been removed, all sprites that were previously stitched to this atlas are instead stitched to the &amp;lt;code&amp;gt;gui&amp;lt;/code&amp;gt; atlas.}}&lt;br /&gt;
|{{HistoryLine||1.21.11|dev=25w41a|Added the &amp;lt;code&amp;gt;celestials&amp;lt;/code&amp;gt; atlas which contains celestial bodies including the sun, moon phases, and end flash.}}&lt;br /&gt;
|{{HistoryLine||1.21.11|dev=25w45a|Added the &amp;lt;code&amp;gt;items&amp;lt;/code&amp;gt; atlas.|Removed paletted permutations from the &amp;lt;code&amp;gt;blocks&amp;lt;/code&amp;gt; atlas.}}&lt;br /&gt;
|{{HistoryLine|upcoming java}}&lt;br /&gt;
|{{HistoryLine||26.2|dev=snap4|Removed the &amp;lt;code&amp;gt;beds&amp;lt;/code&amp;gt; atlas.}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Navigation ==&lt;br /&gt;
{{Navbox resource packs}}&lt;br /&gt;
{{Navbox Java Edition technical|resourcepack}}&lt;br /&gt;
&lt;br /&gt;
[[Minecraft:de:Atlasdaten]]&lt;br /&gt;
[[Minecraft:ja:テクスチャ#テクスチャアトラス]]&lt;br /&gt;
[[Minecraft:zh:纹理图集]]&lt;/div&gt;</summary>
		<author><name>SyncBot</name></author>
	</entry>
</feed>