summaryrefslogtreecommitdiffstats
path: root/doc/classes/TextureLayered.xml
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2021-07-30 15:28:05 +0200
committerRémi Verschelde <rverschelde@gmail.com>2021-07-30 15:29:52 +0200
commit7adf4cc9b5de6701a41e27690a69b9892d5eed85 (patch)
tree0019e6d1b7cd993b81d5bba268074cfc4e10a213 /doc/classes/TextureLayered.xml
parenta1c19b9a1e53f78c75c13cb418270db80057b21a (diff)
downloadredot-engine-7adf4cc9b5de6701a41e27690a69b9892d5eed85.tar.gz
doc: Use self-closing tags for `return` and `argument`
For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there.
Diffstat (limited to 'doc/classes/TextureLayered.xml')
-rw-r--r--doc/classes/TextureLayered.xml24
1 files changed, 8 insertions, 16 deletions
diff --git a/doc/classes/TextureLayered.xml b/doc/classes/TextureLayered.xml
index d81c3c7c5a..dd8c709049 100644
--- a/doc/classes/TextureLayered.xml
+++ b/doc/classes/TextureLayered.xml
@@ -10,50 +10,42 @@
</tutorials>
<methods>
<method name="get_format" qualifiers="const">
- <return type="int" enum="Image.Format">
- </return>
+ <return type="int" enum="Image.Format" />
<description>
Returns the current format being used by this texture. See [enum Image.Format] for details.
</description>
</method>
<method name="get_height" qualifiers="const">
- <return type="int">
- </return>
+ <return type="int" />
<description>
Returns the height of the texture. Height is typically represented by the Y-axis.
</description>
</method>
<method name="get_layer_data" qualifiers="const">
- <return type="Image">
- </return>
- <argument index="0" name="layer" type="int">
- </argument>
+ <return type="Image" />
+ <argument index="0" name="layer" type="int" />
<description>
Returns an [Image] resource with the data from specified [code]layer[/code].
</description>
</method>
<method name="get_layered_type" qualifiers="const">
- <return type="int" enum="TextureLayered.LayeredType">
- </return>
+ <return type="int" enum="TextureLayered.LayeredType" />
<description>
</description>
</method>
<method name="get_layers" qualifiers="const">
- <return type="int">
- </return>
+ <return type="int" />
<description>
</description>
</method>
<method name="get_width" qualifiers="const">
- <return type="int">
- </return>
+ <return type="int" />
<description>
Returns the width of the texture. Width is typically represented by the X-axis.
</description>
</method>
<method name="has_mipmaps" qualifiers="const">
- <return type="bool">
- </return>
+ <return type="bool" />
<description>
</description>
</method>