2018-08-21 00:35:30 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-16 18:17:22 +01:00
<class name= "TextureLayered" inherits= "Texture" version= "4.0" >
2018-08-21 00:35:30 +02:00
<brief_description >
2020-01-26 06:59:51 +01:00
Base class for 3D texture types.
2018-08-21 00:35:30 +02:00
</brief_description>
<description >
2020-02-12 09:59:06 +01:00
Base class for [Texture2DArray], [Cubemap] and [CubemapArray]. Cannot be used directly, but contains all the functions necessary for accessing the derived resource types. Data is set on a per-layer basis. For [Texture2DArray]s, the layer specifies the array layer.
2018-08-21 00:35:30 +02:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "get_format" qualifiers= "const" >
<return type= "int" enum= "Image.Format" >
</return>
<description >
2020-02-04 21:25:02 +01:00
Returns the current format being used by this texture. See [enum Image.Format] for details.
2018-08-21 00:35:30 +02:00
</description>
</method>
<method name= "get_height" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2020-02-04 21:25:02 +01:00
Returns the height of the texture. Height is typically represented by the Y-axis.
2018-08-21 00:35:30 +02:00
</description>
</method>
<method name= "get_layer_data" qualifiers= "const" >
<return type= "Image" >
</return>
<argument index= "0" name= "layer" type= "int" >
</argument>
<description >
2020-02-04 21:25:02 +01:00
Returns an [Image] resource with the data from specified [code]layer[/code].
2018-08-21 00:35:30 +02:00
</description>
</method>
2020-05-12 10:10:34 +02:00
<method name= "get_layered_type" qualifiers= "const" >
<return type= "int" enum= "TextureLayered.LayeredType" >
</return>
<description >
</description>
</method>
2020-02-12 09:59:06 +01:00
<method name= "get_layers" qualifiers= "const" >
2018-08-21 00:35:30 +02:00
<return type= "int" >
</return>
<description >
</description>
</method>
2020-02-12 09:59:06 +01:00
<method name= "get_width" qualifiers= "const" >
<return type= "int" >
2018-08-21 00:35:30 +02:00
</return>
<description >
2020-02-12 09:59:06 +01:00
Returns the width of the texture. Width is typically represented by the X-axis.
2018-08-21 00:35:30 +02:00
</description>
</method>
2020-05-12 10:10:34 +02:00
<method name= "has_mipmaps" qualifiers= "const" >
<return type= "bool" >
2018-08-21 00:35:30 +02:00
</return>
<description >
</description>
</method>
</methods>
<constants >
2020-05-12 10:10:34 +02:00
<constant name= "LAYERED_TYPE_2D_ARRAY" value= "0" enum= "LayeredType" >
</constant>
<constant name= "LAYERED_TYPE_CUBEMAP" value= "1" enum= "LayeredType" >
</constant>
<constant name= "LAYERED_TYPE_CUBEMAP_ARRAY" value= "2" enum= "LayeredType" >
</constant>
2018-08-21 00:35:30 +02:00
</constants>
</class>