summaryrefslogtreecommitdiff
path: root/doc/classes/TextureRect.xml
blob: 6d137cb14cc8a4ff2b26c9f437ee28d4257cfc5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?xml version="1.0" encoding="UTF-8" ?>
<class name="TextureRect" inherits="Control" category="Core" version="3.0.alpha.custom_build">
	<brief_description>
		Control that draws a texture.
	</brief_description>
	<description>
		Control that draws a texture.
	</description>
	<tutorials>
	</tutorials>
	<demos>
	</demos>
	<methods>
		<method name="get_stretch_mode" qualifiers="const">
			<return type="int" enum="TextureRect.StretchMode">
			</return>
			<description>
			</description>
		</method>
		<method name="get_texture" qualifiers="const">
			<return type="Texture">
			</return>
			<description>
			</description>
		</method>
		<method name="has_expand" qualifiers="const">
			<return type="bool">
			</return>
			<description>
			</description>
		</method>
		<method name="set_expand">
			<return type="void">
			</return>
			<argument index="0" name="enable" type="bool">
			</argument>
			<description>
			</description>
		</method>
		<method name="set_stretch_mode">
			<return type="void">
			</return>
			<argument index="0" name="stretch_mode" type="int" enum="TextureRect.StretchMode">
			</argument>
			<description>
			</description>
		</method>
		<method name="set_texture">
			<return type="void">
			</return>
			<argument index="0" name="texture" type="Texture">
			</argument>
			<description>
			</description>
		</method>
	</methods>
	<members>
		<member name="expand" type="bool" setter="set_expand" getter="has_expand">
			If [code]true[/code] texture will expand to fit. Default value: [code]false[/code].
		</member>
		<member name="stretch_mode" type="int" setter="set_stretch_mode" getter="get_stretch_mode" enum="TextureRect.StretchMode">
			Stretch mode of the texture. Use STRETCH_* constants as value.
		</member>
		<member name="texture" type="Texture" setter="set_texture" getter="get_texture">
			The [Texture] resource for the node.
		</member>
	</members>
	<constants>
		<constant name="STRETCH_SCALE_ON_EXPAND" value="0">
		</constant>
		<constant name="STRETCH_SCALE" value="1">
		</constant>
		<constant name="STRETCH_TILE" value="2">
		</constant>
		<constant name="STRETCH_KEEP" value="3">
		</constant>
		<constant name="STRETCH_KEEP_CENTERED" value="4">
		</constant>
		<constant name="STRETCH_KEEP_ASPECT" value="5">
		</constant>
		<constant name="STRETCH_KEEP_ASPECT_CENTERED" value="6">
		</constant>
		<constant name="STRETCH_KEEP_ASPECT_COVERED" value="7">
		</constant>
	</constants>
</class>