2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2018-02-27 13:40:43 +01:00
<class name= "TextureRect" inherits= "Control" category= "Core" version= "3.1" >
2017-09-12 22:42:36 +02:00
<brief_description >
2018-05-20 22:43:48 +02:00
Control for drawing textures.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2018-05-20 22:43:48 +02:00
Used to draw icons and sprites in a user interface. The texture's placement can be controlled with the [member stretch_mode] property. It can scale, tile, or stay centered inside its bounding rectangle.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<demos >
</demos>
<methods >
</methods>
<members >
2017-09-13 08:49:40 +02:00
<member name= "expand" type= "bool" setter= "set_expand" getter= "has_expand" >
2018-12-20 13:46:54 +01:00
If [code]true[/code], the texture scales to fit its bounding rectangle. Default value: [code]false[/code].
2017-09-12 22:42:36 +02:00
</member>
2017-09-13 08:49:40 +02:00
<member name= "stretch_mode" type= "int" setter= "set_stretch_mode" getter= "get_stretch_mode" enum= "TextureRect.StretchMode" >
2018-05-20 22:43:48 +02:00
Controls the texture's behavior when resizing the node's bounding rectangle. See [enum StretchMode].
2017-09-12 22:42:36 +02:00
</member>
2017-09-13 08:49:40 +02:00
<member name= "texture" type= "Texture" setter= "set_texture" getter= "get_texture" >
2017-09-16 11:54:44 +02:00
The node's [Texture] resource.
2017-09-12 22:42:36 +02:00
</member>
</members>
<constants >
2017-11-24 23:16:30 +01:00
<constant name= "STRETCH_SCALE_ON_EXPAND" value= "0" enum= "StretchMode" >
2017-09-16 11:54:44 +02:00
Scale to fit the node's bounding rectangle, only if [code]expand[/code] is [code]true[/code]. Default [code]stretch_mode[/code], for backwards compatibility. Until you set [code]expand[/code] to [code]true[/code], the texture will behave like [code]STRETCH_KEEP[/code].
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "STRETCH_SCALE" value= "1" enum= "StretchMode" >
2017-09-16 11:54:44 +02:00
Scale to fit the node's bounding rectangle.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "STRETCH_TILE" value= "2" enum= "StretchMode" >
2017-09-16 11:54:44 +02:00
Tile inside the node's bounding rectangle.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "STRETCH_KEEP" value= "3" enum= "StretchMode" >
2017-09-16 11:54:44 +02:00
The texture keeps its original size and stays in the bounding rectangle's top-left corner.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "STRETCH_KEEP_CENTERED" value= "4" enum= "StretchMode" >
2017-09-16 11:54:44 +02:00
The texture keeps its original size and stays centered in the node's bounding rectangle.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "STRETCH_KEEP_ASPECT" value= "5" enum= "StretchMode" >
2017-09-16 11:54:44 +02:00
Scale the texture to fit the node's bounding rectangle, but maintain the texture's aspect ratio.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "STRETCH_KEEP_ASPECT_CENTERED" value= "6" enum= "StretchMode" >
2017-09-16 11:54:44 +02:00
Scale the texture to fit the node's bounding rectangle, center it and maintain its aspect ratio.
2017-09-12 22:42:36 +02:00
</constant>
2017-11-24 23:16:30 +01:00
<constant name= "STRETCH_KEEP_ASPECT_COVERED" value= "7" enum= "StretchMode" >
2017-09-16 11:54:44 +02:00
Scale the texture so that the shorter side fits the bounding rectangle. The other side clips to the node's limits.
2017-09-12 22:42:36 +02:00
</constant>
</constants>
</class>