2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-01-26 16:01:49 +01:00
<class name= "AtlasTexture" inherits= "Texture" version= "3.2" >
2017-09-12 22:42:36 +02:00
<brief_description >
2017-09-13 07:42:53 +02:00
Packs multiple small textures in a single, bigger one. Helps to optimize video memory costs and render calls.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2019-09-13 14:04:57 +02:00
[Texture] resource aimed at managing big textures files that pack multiple smaller textures. Consists of a [Texture], a margin that defines the border width, and a region that defines the actual area of the AtlasTexture.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
</methods>
<members >
2019-07-15 20:42:47 +02:00
<member name= "atlas" type= "Texture" setter= "set_atlas" getter= "get_atlas" >
2017-09-13 07:42:53 +02:00
The texture that contains the atlas. Can be any [Texture] subtype.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "filter_clip" type= "bool" setter= "set_filter_clip" getter= "has_filter_clip" default= "false" >
2018-12-20 13:46:54 +01:00
If [code]true[/code], clips the area outside of the region to avoid bleeding of the surrounding texture pixels.
2017-11-13 09:24:36 +01:00
</member>
2019-09-24 13:34:03 +02:00
<member name= "flags" type= "int" setter= "set_flags" getter= "get_flags" override= "true" default= "0" />
2019-06-29 12:38:01 +02:00
<member name= "margin" type= "Rect2" setter= "set_margin" getter= "get_margin" default= "Rect2( 0, 0, 0, 0 )" >
2019-06-22 01:04:47 +02:00
The margin around the region. The [Rect2]'s [member Rect2.size] parameter ("w" and "h" in the editor) resizes the texture so it fits within the margin.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "region" type= "Rect2" setter= "set_region" getter= "get_region" default= "Rect2( 0, 0, 0, 0 )" >
2017-09-13 07:42:53 +02:00
The AtlasTexture's used region.
2017-09-12 22:42:36 +02:00
</member>
</members>
<constants >
</constants>
</class>