godot/doc/classes/TextureLayered.xml

118 lines
4.6 KiB
XML
Raw Normal View History

2018-08-21 00:35:30 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 02:03:48 +01:00
<class name="TextureLayered" inherits="Resource" 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>
Base class for [Texture3D] and [TextureArray]. Cannot be used directly, but contains all the functions necessary for accessing and using [Texture3D] and [TextureArray]. Data is set on a per-layer basis. For [Texture3D]s, the layer sepcifies the depth or Z-index, they can be treated as a bunch of 2D slices. Similarly, for [TextureArray]s, the layer specifies the array layer.
2018-08-21 00:35:30 +02:00
</description>
<tutorials>
</tutorials>
<methods>
<method name="create">
<return type="void">
</return>
<argument index="0" name="width" type="int">
</argument>
<argument index="1" name="height" type="int">
</argument>
<argument index="2" name="depth" type="int">
</argument>
<argument index="3" name="format" type="int" enum="Image.Format">
</argument>
<argument index="4" name="flags" type="int" default="4">
</argument>
<description>
Creates the [Texture3D] or [TextureArray] with specified [code]width[/code], [code]height[/code], and [code]depth[/code]. See [enum Image.Format] for [code]format[/code] options. See [enum Flags] enumerator for [code]flags[/code] options.
2018-08-21 00:35:30 +02:00
</description>
</method>
<method name="get_depth" qualifiers="const">
<return type="int">
</return>
<description>
Returns the depth of the texture. Depth is the 3rd dimension (typically Z-axis).
2018-08-21 00:35:30 +02:00
</description>
</method>
<method name="get_format" qualifiers="const">
<return type="int" enum="Image.Format">
</return>
<description>
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>
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>
Returns an [Image] resource with the data from specified [code]layer[/code].
2018-08-21 00:35:30 +02:00
</description>
</method>
<method name="get_width" qualifiers="const">
<return type="int">
</return>
<description>
Returns the width of the texture. Width is typically represented by the X-axis.
2018-08-21 00:35:30 +02:00
</description>
</method>
<method name="set_data_partial">
<return type="void">
</return>
<argument index="0" name="image" type="Image">
</argument>
<argument index="1" name="x_offset" type="int">
</argument>
<argument index="2" name="y_offset" type="int">
</argument>
<argument index="3" name="layer" type="int">
</argument>
<argument index="4" name="mipmap" type="int" default="0">
</argument>
<description>
Partially sets the data for a specified [code]layer[/code] by overwriting using the data of the specified [code]image[/code]. [code]x_offset[/code] and [code]y_offset[/code] determine where the [Image] is "stamped" over the texture. The [code]image[/code] must fit within the texture.
2018-08-21 00:35:30 +02:00
</description>
</method>
<method name="set_layer_data">
<return type="void">
</return>
<argument index="0" name="image" type="Image">
</argument>
<argument index="1" name="layer" type="int">
</argument>
<description>
Sets the data for the specified layer. Data takes the form of a 2-dimensional [Image] resource.
2018-08-21 00:35:30 +02:00
</description>
</method>
</methods>
<members>
2019-07-15 20:42:47 +02:00
<member name="data" type="Dictionary" setter="_set_data" getter="_get_data" default="{&quot;depth&quot;: 0,&quot;flags&quot;: 4,&quot;format&quot;: 37,&quot;height&quot;: 0,&quot;layers&quot;: [ ],&quot;width&quot;: 0}">
Returns a dictionary with all the data used by this texture.
2018-08-21 00:35:30 +02:00
</member>
<member name="flags" type="int" setter="set_flags" getter="get_flags" default="4">
Specifies which [enum Flags] apply to this texture.
2018-08-21 00:35:30 +02:00
</member>
</members>
<constants>
<constant name="FLAG_MIPMAPS" value="1" enum="Flags">
Texture will generate mipmaps on creation.
2018-08-21 00:35:30 +02:00
</constant>
<constant name="FLAG_REPEAT" value="2" enum="Flags">
Texture will repeat when UV used is outside the 0-1 range.
2018-08-21 00:35:30 +02:00
</constant>
<constant name="FLAG_FILTER" value="4" enum="Flags">
Use filtering when reading from texture. Filtering smooths out pixels. Turning filtering off is slightly faster and more appropriate when you need access to individual pixels.
2018-08-21 00:35:30 +02:00
</constant>
<constant name="FLAGS_DEFAULT" value="4" enum="Flags">
Equivalent to [constant FLAG_FILTER].
2018-08-21 00:35:30 +02:00
</constant>
</constants>
</class>