summaryrefslogtreecommitdiff
path: root/doc/classes/CanvasItem.xml
blob: a230806c081f980dad51a6e27664324fda0f4b6b (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
<?xml version="1.0" encoding="UTF-8" ?>
<class name="CanvasItem" inherits="Node" version="4.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
	<brief_description>
		Base class of anything 2D.
	</brief_description>
	<description>
		Base class of anything 2D. Canvas items are laid out in a tree; children inherit and extend their parent's transform. [CanvasItem] is extended by [Control] for anything GUI-related, and by [Node2D] for anything related to the 2D engine.
		Any [CanvasItem] can draw. For this, [method update] is called by the engine, then [constant NOTIFICATION_DRAW] will be received on idle time to request redraw. Because of this, canvas items don't need to be redrawn on every frame, improving the performance significantly. Several functions for drawing on the [CanvasItem] are provided (see [code]draw_*[/code] functions). However, they can only be used inside [method _draw], its corresponding [method Object._notification] or methods connected to the [signal draw] signal.
		Canvas items are drawn in tree order. By default, children are on top of their parents so a root [CanvasItem] will be drawn behind everything. This behavior can be changed on a per-item basis.
		A [CanvasItem] can also be hidden, which will also hide its children. It provides many ways to change parameters such as modulation (for itself and its children) and self modulation (only for itself), as well as its blend mode.
		Ultimately, a transform notification can be requested, which will notify the node that its global position changed in case the parent tree changed.
		[b]Note:[/b] Unless otherwise specified, all methods that have angle parameters must have angles specified as [i]radians[/i]. To convert degrees to radians, use [method @GlobalScope.deg2rad].
	</description>
	<tutorials>
		<link title="Viewport and canvas transforms">$DOCS_URL/tutorials/2d/2d_transforms.html</link>
		<link title="Custom drawing in 2D">$DOCS_URL/tutorials/2d/custom_drawing_in_2d.html</link>
		<link title="Audio Spectrum Demo">https://godotengine.org/asset-library/asset/528</link>
	</tutorials>
	<methods>
		<method name="_draw" qualifiers="virtual">
			<return type="void" />
			<description>
				Called when [CanvasItem] has been requested to redraw (when [method update] is called, either manually or by the engine).
				Corresponds to the [constant NOTIFICATION_DRAW] notification in [method Object._notification].
			</description>
		</method>
		<method name="draw_animation_slice">
			<return type="void" />
			<param index="0" name="animation_length" type="float" />
			<param index="1" name="slice_begin" type="float" />
			<param index="2" name="slice_end" type="float" />
			<param index="3" name="offset" type="float" default="0.0" />
			<description>
				Subsequent drawing commands will be ignored unless they fall within the specified animation slice. This is a faster way to implement animations that loop on background rather than redrawing constantly.
			</description>
		</method>
		<method name="draw_arc">
			<return type="void" />
			<param index="0" name="center" type="Vector2" />
			<param index="1" name="radius" type="float" />
			<param index="2" name="start_angle" type="float" />
			<param index="3" name="end_angle" type="float" />
			<param index="4" name="point_count" type="int" />
			<param index="5" name="color" type="Color" />
			<param index="6" name="width" type="float" default="1.0" />
			<param index="7" name="antialiased" type="bool" default="false" />
			<description>
				Draws a unfilled arc between the given angles. The larger the value of [param point_count], the smoother the curve. See also [method draw_circle].
			</description>
		</method>
		<method name="draw_char" qualifiers="const">
			<return type="void" />
			<param index="0" name="font" type="Font" />
			<param index="1" name="pos" type="Vector2" />
			<param index="2" name="char" type="String" />
			<param index="3" name="font_size" type="int" default="16" />
			<param index="4" name="modulate" type="Color" default="Color(1, 1, 1, 1)" />
			<description>
				Draws a string first character using a custom font.
			</description>
		</method>
		<method name="draw_char_outline" qualifiers="const">
			<return type="void" />
			<param index="0" name="font" type="Font" />
			<param index="1" name="pos" type="Vector2" />
			<param index="2" name="char" type="String" />
			<param index="3" name="font_size" type="int" default="16" />
			<param index="4" name="size" type="int" default="-1" />
			<param index="5" name="modulate" type="Color" default="Color(1, 1, 1, 1)" />
			<description>
				Draws a string first character outline using a custom font.
			</description>
		</method>
		<method name="draw_circle">
			<return type="void" />
			<param index="0" name="position" type="Vector2" />
			<param index="1" name="radius" type="float" />
			<param index="2" name="color" type="Color" />
			<description>
				Draws a colored, filled circle. See also [method draw_arc], [method draw_polyline] and [method draw_polygon].
			</description>
		</method>
		<method name="draw_colored_polygon">
			<return type="void" />
			<param index="0" name="points" type="PackedVector2Array" />
			<param index="1" name="color" type="Color" />
			<param index="2" name="uvs" type="PackedVector2Array" default="PackedVector2Array()" />
			<param index="3" name="texture" type="Texture2D" default="null" />
			<description>
				Draws a colored polygon of any number of points, convex or concave. Unlike [method draw_polygon], a single color must be specified for the whole polygon.
			</description>
		</method>
		<method name="draw_dashed_line">
			<return type="void" />
			<param index="0" name="from" type="Vector2" />
			<param index="1" name="to" type="Vector2" />
			<param index="2" name="color" type="Color" />
			<param index="3" name="width" type="float" default="1.0" />
			<param index="4" name="dash" type="float" default="2.0" />
			<description>
				Draws a dashed line from a 2D point to another, with a given color and width. See also [method draw_multiline] and [method draw_polyline].
			</description>
		</method>
		<method name="draw_end_animation">
			<return type="void" />
			<description>
				After submitting all animations slices via [method draw_animation_slice], this function can be used to revert drawing to its default state (all subsequent drawing commands will be visible). If you don't care about this particular use case, usage of this function after submitting the slices is not required.
			</description>
		</method>
		<method name="draw_line">
			<return type="void" />
			<param index="0" name="from" type="Vector2" />
			<param index="1" name="to" type="Vector2" />
			<param index="2" name="color" type="Color" />
			<param index="3" name="width" type="float" default="1.0" />
			<param index="4" name="antialiased" type="bool" default="false" />
			<description>
				Draws a line from a 2D point to another, with a given color and width. It can be optionally antialiased. See also [method draw_multiline] and [method draw_polyline].
			</description>
		</method>
		<method name="draw_mesh">
			<return type="void" />
			<param index="0" name="mesh" type="Mesh" />
			<param index="1" name="texture" type="Texture2D" />
			<param index="2" name="transform" type="Transform2D" default="Transform2D(1, 0, 0, 1, 0, 0)" />
			<param index="3" name="modulate" type="Color" default="Color(1, 1, 1, 1)" />
			<description>
				Draws a [Mesh] in 2D, using the provided texture. See [MeshInstance2D] for related documentation.
			</description>
		</method>
		<method name="draw_msdf_texture_rect_region">
			<return type="void" />
			<param index="0" name="texture" type="Texture2D" />
			<param index="1" name="rect" type="Rect2" />
			<param index="2" name="src_rect" type="Rect2" />
			<param index="3" name="modulate" type="Color" default="Color(1, 1, 1, 1)" />
			<param index="4" name="outline" type="float" default="0.0" />
			<param index="5" name="pixel_range" type="float" default="4.0" />
			<description>
				Draws a textured rectangle region of the multi-channel signed distance field texture at a given position, optionally modulated by a color. See [member FontFile.multichannel_signed_distance_field] for more information and caveats about MSDF font rendering.
				If [param outline] is positive, each alpha channel value of pixel in region is set to maximum value of true distance in the [param outline] radius.
				Value of the [param pixel_range] should the same that was used during distance field texture generation.
			</description>
		</method>
		<method name="draw_multiline">
			<return type="void" />
			<param index="0" name="points" type="PackedVector2Array" />
			<param index="1" name="color" type="Color" />
			<param index="2" name="width" type="float" default="1.0" />
			<description>
				Draws multiple disconnected lines with a uniform [param color]. When drawing large amounts of lines, this is faster than using individual [method draw_line] calls. To draw interconnected lines, use [method draw_polyline] instead.
			</description>
		</method>
		<method name="draw_multiline_colors">
			<return type="void" />
			<param index="0" name="points" type="PackedVector2Array" />
			<param index="1" name="colors" type="PackedColorArray" />
			<param index="2" name="width" type="float" default="1.0" />
			<description>
				Draws multiple disconnected lines with a uniform [param width] and segment-by-segment coloring. Colors assigned to line segments match by index between [param points] and [param colors]. When drawing large amounts of lines, this is faster than using individual [method draw_line] calls. To draw interconnected lines, use [method draw_polyline_colors] instead.
			</description>
		</method>
		<method name="draw_multiline_string" qualifiers="const">
			<return type="void" />
			<param index="0" name="font" type="Font" />
			<param index="1" name="pos" type="Vector2" />
			<param index="2" name="text" type="String" />
			<param index="3" name="alignment" type="int" enum="HorizontalAlignment" default="0" />
			<param index="4" name="width" type="float" default="-1" />
			<param index="5" name="font_size" type="int" default="16" />
			<param index="6" name="max_lines" type="int" default="-1" />
			<param index="7" name="modulate" type="Color" default="Color(1, 1, 1, 1)" />
			<param index="8" name="brk_flags" type="int" enum="TextServer.LineBreakFlag" default="3" />
			<param index="9" name="jst_flags" type="int" enum="TextServer.JustificationFlag" default="3" />
			<param index="10" name="direction" type="int" enum="TextServer.Direction" default="0" />
			<param index="11" name="orientation" type="int" enum="TextServer.Orientation" default="0" />
			<description>
				Breaks [param text] into lines and draws it using the specified [param font] at the [param pos] (top-left corner). The text will have its color multiplied by [param modulate]. If [param width] is greater than or equal to 0, the text will be clipped if it exceeds the specified width.
			</description>
		</method>
		<method name="draw_multiline_string_outline" qualifiers="const">
			<return type="void" />
			<param index="0" name="font" type="Font" />
			<param index="1" name="pos" type="Vector2" />
			<param index="2" name="text" type="String" />
			<param index="3" name="alignment" type="int" enum="HorizontalAlignment" default="0" />
			<param index="4" name="width" type="float" default="-1" />
			<param index="5" name="font_size" type="int" default="16" />
			<param index="6" name="max_lines" type="int" default="-1" />
			<param index="7" name="size" type="int" default="1" />
			<param index="8" name="modulate" type="Color" default="Color(1, 1, 1, 1)" />
			<param index="9" name="brk_flags" type="int" enum="TextServer.LineBreakFlag" default="3" />
			<param index="10" name="jst_flags" type="int" enum="TextServer.JustificationFlag" default="3" />
			<param index="11" name="direction" type="int" enum="TextServer.Direction" default="0" />
			<param index="12" name="orientation" type="int" enum="TextServer.Orientation" default="0" />
			<description>
				Breaks [param text] to the lines and draws text outline using the specified [param font] at the [param pos] (top-left corner). The text will have its color multiplied by [param modulate]. If [param width] is greater than or equal to 0, the text will be clipped if it exceeds the specified width.
			</description>
		</method>
		<method name="draw_multimesh">
			<return type="void" />
			<param index="0" name="multimesh" type="MultiMesh" />
			<param index="1" name="texture" type="Texture2D" />
			<description>
				Draws a [MultiMesh] in 2D with the provided texture. See [MultiMeshInstance2D] for related documentation.
			</description>
		</method>
		<method name="draw_polygon">
			<return type="void" />
			<param index="0" name="points" type="PackedVector2Array" />
			<param index="1" name="colors" type="PackedColorArray" />
			<param index="2" name="uvs" type="PackedVector2Array" default="PackedVector2Array()" />
			<param index="3" name="texture" type="Texture2D" default="null" />
			<description>
				Draws a solid polygon of any number of points, convex or concave. Unlike [method draw_colored_polygon], each point's color can be changed individually. See also [method draw_polyline] and [method draw_polyline_colors].
			</description>
		</method>
		<method name="draw_polyline">
			<return type="void" />
			<param index="0" name="points" type="PackedVector2Array" />
			<param index="1" name="color" type="Color" />
			<param index="2" name="width" type="float" default="1.0" />
			<param index="3" name="antialiased" type="bool" default="false" />
			<description>
				Draws interconnected line segments with a uniform [param color] and [param width] and optional antialiasing. When drawing large amounts of lines, this is faster than using individual [method draw_line] calls. To draw disconnected lines, use [method draw_multiline] instead. See also [method draw_polygon].
			</description>
		</method>
		<method name="draw_polyline_colors">
			<return type="void" />
			<param index="0" name="points" type="PackedVector2Array" />
			<param index="1" name="colors" type="PackedColorArray" />
			<param index="2" name="width" type="float" default="1.0" />
			<param index="3" name="antialiased" type="bool" default="false" />
			<description>
				Draws interconnected line segments with a uniform [param width] and segment-by-segment coloring, and optional antialiasing. Colors assigned to line segments match by index between [param points] and [param colors]. When drawing large amounts of lines, this is faster than using individual [method draw_line] calls. To draw disconnected lines, use [method draw_multiline_colors] instead. See also [method draw_polygon].
			</description>
		</method>
		<method name="draw_primitive">
			<return type="void" />
			<param index="0" name="points" type="PackedVector2Array" />
			<param index="1" name="colors" type="PackedColorArray" />
			<param index="2" name="uvs" type="PackedVector2Array" />
			<param index="3" name="texture" type="Texture2D" default="null" />
			<param index="4" name="width" type="float" default="1.0" />
			<description>
				Draws a custom primitive. 1 point for a point, 2 points for a line, 3 points for a triangle, and 4 points for a quad. If 0 points or more than 4 points are specified, nothing will be drawn and an error message will be printed. See also [method draw_line], [method draw_polyline], [method draw_polygon], and [method draw_rect].
			</description>
		</method>
		<method name="draw_rect">
			<return type="void" />
			<param index="0" name="rect" type="Rect2" />
			<param index="1" name="color" type="Color" />
			<param index="2" name="filled" type="bool" default="true" />
			<param index="3" name="width" type="float" default="1.0" />
			<description>
				Draws a rectangle. If [param filled] is [code]true[/code], the rectangle will be filled with the [param color] specified. If [param filled] is [code]false[/code], the rectangle will be drawn as a stroke with the [param color] and [param width] specified.
				[b]Note:[/b] [param width] is only effective if [param filled] is [code]false[/code].
			</description>
		</method>
		<method name="draw_set_transform">
			<return type="void" />
			<param index="0" name="position" type="Vector2" />
			<param index="1" name="rotation" type="float" default="0.0" />
			<param index="2" name="scale" type="Vector2" default="Vector2(1, 1)" />
			<description>
				Sets a custom transform for drawing via components. Anything drawn afterwards will be transformed by this.
			</description>
		</method>
		<method name="draw_set_transform_matrix">
			<return type="void" />
			<param index="0" name="xform" type="Transform2D" />
			<description>
				Sets a custom transform for drawing via matrix. Anything drawn afterwards will be transformed by this.
			</description>
		</method>
		<method name="draw_string" qualifiers="const">
			<return type="void" />
			<param index="0" name="font" type="Font" />
			<param index="1" name="pos" type="Vector2" />
			<param index="2" name="text" type="String" />
			<param index="3" name="alignment" type="int" enum="HorizontalAlignment" default="0" />
			<param index="4" name="width" type="float" default="-1" />
			<param index="5" name="font_size" type="int" default="16" />
			<param index="6" name="modulate" type="Color" default="Color(1, 1, 1, 1)" />
			<param index="7" name="jst_flags" type="int" enum="TextServer.JustificationFlag" default="3" />
			<param index="8" name="direction" type="int" enum="TextServer.Direction" default="0" />
			<param index="9" name="orientation" type="int" enum="TextServer.Orientation" default="0" />
			<description>
				Draws [param text] using the specified [param font] at the [param pos] (bottom-left corner using the baseline of the font). The text will have its color multiplied by [param modulate]. If [param width] is greater than or equal to 0, the text will be clipped if it exceeds the specified width.
				[b]Example using the default project font:[/b]
				[codeblocks]
				[gdscript]
				# If using this method in a script that redraws constantly, move the
				# `default_font` declaration to a member variable assigned in `_ready()`
				# so the Control is only created once.
				var default_font = Control.new().get_font("font")
				var default_font_size = Control.new().get_font_size("font_size")
				draw_string(default_font, Vector2(64, 64), "Hello world", HORIZONTAL_ALIGNMENT_LEFT, -1, font_size)
				[/gdscript]
				[csharp]
				// If using this method in a script that redraws constantly, move the
				// `default_font` declaration to a member variable assigned in `_ready()`
				// so the Control is only created once.
				Font defaultFont = new Control().GetFont("font");
				int defaultFontSize = new Control().GetFontSize("font_size");
				DrawString(defaultFont, new Vector2(64, 64), "Hello world", HORIZONTAL_ALIGNMENT_LEFT, -1, defaultFontSize);
				[/csharp]
				[/codeblocks]
				See also [method Font.draw_string].
			</description>
		</method>
		<method name="draw_string_outline" qualifiers="const">
			<return type="void" />
			<param index="0" name="font" type="Font" />
			<param index="1" name="pos" type="Vector2" />
			<param index="2" name="text" type="String" />
			<param index="3" name="alignment" type="int" enum="HorizontalAlignment" default="0" />
			<param index="4" name="width" type="float" default="-1" />
			<param index="5" name="font_size" type="int" default="16" />
			<param index="6" name="size" type="int" default="1" />
			<param index="7" name="modulate" type="Color" default="Color(1, 1, 1, 1)" />
			<param index="8" name="jst_flags" type="int" enum="TextServer.JustificationFlag" default="3" />
			<param index="9" name="direction" type="int" enum="TextServer.Direction" default="0" />
			<param index="10" name="orientation" type="int" enum="TextServer.Orientation" default="0" />
			<description>
				Draws [param text] outline using the specified [param font] at the [param pos] (bottom-left corner using the baseline of the font). The text will have its color multiplied by [param modulate]. If [param width] is greater than or equal to 0, the text will be clipped if it exceeds the specified width.
			</description>
		</method>
		<method name="draw_style_box">
			<return type="void" />
			<param index="0" name="style_box" type="StyleBox" />
			<param index="1" name="rect" type="Rect2" />
			<description>
				Draws a styled rectangle.
			</description>
		</method>
		<method name="draw_texture">
			<return type="void" />
			<param index="0" name="texture" type="Texture2D" />
			<param index="1" name="position" type="Vector2" />
			<param index="2" name="modulate" type="Color" default="Color(1, 1, 1, 1)" />
			<description>
				Draws a texture at a given position.
			</description>
		</method>
		<method name="draw_texture_rect">
			<return type="void" />
			<param index="0" name="texture" type="Texture2D" />
			<param index="1" name="rect" type="Rect2" />
			<param index="2" name="tile" type="bool" />
			<param index="3" name="modulate" type="Color" default="Color(1, 1, 1, 1)" />
			<param index="4" name="transpose" type="bool" default="false" />
			<description>
				Draws a textured rectangle at a given position, optionally modulated by a color. If [param transpose] is [code]true[/code], the texture will have its X and Y coordinates swapped.
			</description>
		</method>
		<method name="draw_texture_rect_region">
			<return type="void" />
			<param index="0" name="texture" type="Texture2D" />
			<param index="1" name="rect" type="Rect2" />
			<param index="2" name="src_rect" type="Rect2" />
			<param index="3" name="modulate" type="Color" default="Color(1, 1, 1, 1)" />
			<param index="4" name="transpose" type="bool" default="false" />
			<param index="5" name="clip_uv" type="bool" default="true" />
			<description>
				Draws a textured rectangle region at a given position, optionally modulated by a color. If [param transpose] is [code]true[/code], the texture will have its X and Y coordinates swapped.
			</description>
		</method>
		<method name="force_update_transform">
			<return type="void" />
			<description>
				Forces the transform to update. Transform changes in physics are not instant for performance reasons. Transforms are accumulated and then set. Use this if you need an up-to-date transform when doing physics operations.
			</description>
		</method>
		<method name="get_canvas" qualifiers="const">
			<return type="RID" />
			<description>
				Returns the [RID] of the [World2D] canvas where this item is in.
			</description>
		</method>
		<method name="get_canvas_item" qualifiers="const">
			<return type="RID" />
			<description>
				Returns the canvas item RID used by [RenderingServer] for this item.
			</description>
		</method>
		<method name="get_canvas_transform" qualifiers="const">
			<return type="Transform2D" />
			<description>
				Returns the transform matrix of this item's canvas.
			</description>
		</method>
		<method name="get_global_mouse_position" qualifiers="const">
			<return type="Vector2" />
			<description>
				Returns the mouse's position in the [CanvasLayer] that this [CanvasItem] is in using the coordinate system of the [CanvasLayer].
			</description>
		</method>
		<method name="get_global_transform" qualifiers="const">
			<return type="Transform2D" />
			<description>
				Returns the global transform matrix of this item.
			</description>
		</method>
		<method name="get_global_transform_with_canvas" qualifiers="const">
			<return type="Transform2D" />
			<description>
				Returns the global transform matrix of this item in relation to the canvas.
			</description>
		</method>
		<method name="get_local_mouse_position" qualifiers="const">
			<return type="Vector2" />
			<description>
				Returns the mouse's position in this [CanvasItem] using the local coordinate system of this [CanvasItem].
			</description>
		</method>
		<method name="get_screen_transform" qualifiers="const">
			<return type="Transform2D" />
			<description>
				Returns the transform of this [CanvasItem] in global screen coordinates (i.e. taking window position into account). Mostly useful for editor plugins.
				Equals to [method get_global_transform] if the window is embedded (see [member Viewport.gui_embed_subwindows]).
			</description>
		</method>
		<method name="get_transform" qualifiers="const">
			<return type="Transform2D" />
			<description>
				Returns the transform matrix of this item.
			</description>
		</method>
		<method name="get_viewport_rect" qualifiers="const">
			<return type="Rect2" />
			<description>
				Returns the viewport's boundaries as a [Rect2].
			</description>
		</method>
		<method name="get_viewport_transform" qualifiers="const">
			<return type="Transform2D" />
			<description>
				Returns this item's transform in relation to the viewport.
			</description>
		</method>
		<method name="get_world_2d" qualifiers="const">
			<return type="World2D" />
			<description>
				Returns the [World2D] where this item is in.
			</description>
		</method>
		<method name="hide">
			<return type="void" />
			<description>
				Hide the [CanvasItem] if it's currently visible. This is equivalent to setting [member visible] to [code]false[/code].
			</description>
		</method>
		<method name="is_local_transform_notification_enabled" qualifiers="const">
			<return type="bool" />
			<description>
				Returns [code]true[/code] if local transform notifications are communicated to children.
			</description>
		</method>
		<method name="is_transform_notification_enabled" qualifiers="const">
			<return type="bool" />
			<description>
				Returns [code]true[/code] if global transform notifications are communicated to children.
			</description>
		</method>
		<method name="is_visible_in_tree" qualifiers="const">
			<return type="bool" />
			<description>
				Returns [code]true[/code] if the node is present in the [SceneTree], its [member visible] property is [code]true[/code] and all its antecedents are also visible. If any antecedent is hidden, this node will not be visible in the scene tree, and is consequently not drawn (see [method _draw]).
			</description>
		</method>
		<method name="make_canvas_position_local" qualifiers="const">
			<return type="Vector2" />
			<param index="0" name="screen_point" type="Vector2" />
			<description>
				Assigns [param screen_point] as this node's new local transform.
			</description>
		</method>
		<method name="make_input_local" qualifiers="const">
			<return type="InputEvent" />
			<param index="0" name="event" type="InputEvent" />
			<description>
				Transformations issued by [param event]'s inputs are applied in local space instead of global space.
			</description>
		</method>
		<method name="set_notify_local_transform">
			<return type="void" />
			<param index="0" name="enable" type="bool" />
			<description>
				If [param enable] is [code]true[/code], this node will receive [constant NOTIFICATION_LOCAL_TRANSFORM_CHANGED] when its local transform changes.
			</description>
		</method>
		<method name="set_notify_transform">
			<return type="void" />
			<param index="0" name="enable" type="bool" />
			<description>
				If [param enable] is [code]true[/code], this node will receive [constant NOTIFICATION_TRANSFORM_CHANGED] when its global transform changes.
			</description>
		</method>
		<method name="show">
			<return type="void" />
			<description>
				Show the [CanvasItem] if it's currently hidden. This is equivalent to setting [member visible] to [code]true[/code]. For controls that inherit [Popup], the correct way to make them visible is to call one of the multiple [code]popup*()[/code] functions instead.
			</description>
		</method>
		<method name="update">
			<return type="void" />
			<description>
				Queues the [CanvasItem] to redraw. During idle time, if [CanvasItem] is visible, [constant NOTIFICATION_DRAW] is sent and [method _draw] is called. This only occurs [b]once[/b] per frame, even if this method has been called multiple times.
			</description>
		</method>
	</methods>
	<members>
		<member name="clip_children" type="bool" setter="set_clip_children" getter="is_clipping_children" default="false">
		</member>
		<member name="light_mask" type="int" setter="set_light_mask" getter="get_light_mask" default="1">
			The rendering layers in which this [CanvasItem] responds to [Light2D] nodes.
		</member>
		<member name="material" type="Material" setter="set_material" getter="get_material">
			The material applied to textures on this [CanvasItem].
		</member>
		<member name="modulate" type="Color" setter="set_modulate" getter="get_modulate" default="Color(1, 1, 1, 1)">
			The color applied to textures on this [CanvasItem].
		</member>
		<member name="self_modulate" type="Color" setter="set_self_modulate" getter="get_self_modulate" default="Color(1, 1, 1, 1)">
			The color applied to textures on this [CanvasItem]. This is not inherited by children [CanvasItem]s.
		</member>
		<member name="show_behind_parent" type="bool" setter="set_draw_behind_parent" getter="is_draw_behind_parent_enabled" default="false">
			If [code]true[/code], the object draws behind its parent.
		</member>
		<member name="texture_filter" type="int" setter="set_texture_filter" getter="get_texture_filter" enum="CanvasItem.TextureFilter" default="0">
			The texture filtering mode to use on this [CanvasItem].
		</member>
		<member name="texture_repeat" type="int" setter="set_texture_repeat" getter="get_texture_repeat" enum="CanvasItem.TextureRepeat" default="0">
			The texture repeating mode to use on this [CanvasItem].
		</member>
		<member name="top_level" type="bool" setter="set_as_top_level" getter="is_set_as_top_level" default="false">
			If [code]true[/code], this [CanvasItem] will [i]not[/i] inherit its transform from parent [CanvasItem]s. Its draw order will also be changed to make it draw on top of other [CanvasItem]s that do not have [member top_level] set to [code]true[/code]. The [CanvasItem] will effectively act as if it was placed as a child of a bare [Node].
		</member>
		<member name="use_parent_material" type="bool" setter="set_use_parent_material" getter="get_use_parent_material" default="false">
			If [code]true[/code], the parent [CanvasItem]'s [member material] property is used as this one's material.
		</member>
		<member name="visible" type="bool" setter="set_visible" getter="is_visible" default="true">
			If [code]true[/code], this [CanvasItem] is drawn. The node is only visible if all of its antecedents are visible as well (in other words, [method is_visible_in_tree] must return [code]true[/code]).
			[b]Note:[/b] For controls that inherit [Popup], the correct way to make them visible is to call one of the multiple [code]popup*()[/code] functions instead.
		</member>
	</members>
	<signals>
		<signal name="draw">
			<description>
				Emitted when the [CanvasItem] must redraw, [i]after[/i] the related [constant NOTIFICATION_DRAW] notification, and [i]before[/i] [method _draw] is called.
				[b]Note:[/b] Deferred connections do not allow drawing through the [code]draw_*[/code] methods.
			</description>
		</signal>
		<signal name="hidden">
			<description>
				Emitted when becoming hidden.
			</description>
		</signal>
		<signal name="item_rect_changed">
			<description>
				Emitted when the item's [Rect2] boundaries (position or size) have changed, or when an action is taking place that may have impacted these boundaries (e.g. changing [member Sprite2D.texture]).
			</description>
		</signal>
		<signal name="visibility_changed">
			<description>
				Emitted when the visibility (hidden/visible) changes.
			</description>
		</signal>
	</signals>
	<constants>
		<constant name="NOTIFICATION_TRANSFORM_CHANGED" value="2000">
			The [CanvasItem]'s global transform has changed. This notification is only received if enabled by [method set_notify_transform].
		</constant>
		<constant name="NOTIFICATION_LOCAL_TRANSFORM_CHANGED" value="35">
			The [CanvasItem]'s local transform has changed. This notification is only received if enabled by [method set_notify_local_transform].
		</constant>
		<constant name="NOTIFICATION_DRAW" value="30">
			The [CanvasItem] is requested to draw (see [method _draw]).
		</constant>
		<constant name="NOTIFICATION_VISIBILITY_CHANGED" value="31">
			The [CanvasItem]'s visibility has changed.
		</constant>
		<constant name="NOTIFICATION_ENTER_CANVAS" value="32">
			The [CanvasItem] has entered the canvas.
		</constant>
		<constant name="NOTIFICATION_EXIT_CANVAS" value="33">
			The [CanvasItem] has exited the canvas.
		</constant>
		<constant name="TEXTURE_FILTER_PARENT_NODE" value="0" enum="TextureFilter">
			The [CanvasItem] will inherit the filter from its parent.
		</constant>
		<constant name="TEXTURE_FILTER_NEAREST" value="1" enum="TextureFilter">
			The texture filter reads from the nearest pixel only. The simplest and fastest method of filtering. Useful for pixel art.
		</constant>
		<constant name="TEXTURE_FILTER_LINEAR" value="2" enum="TextureFilter">
			The texture filter blends between the nearest four pixels. Use this for most cases where you want to avoid a pixelated style.
		</constant>
		<constant name="TEXTURE_FILTER_NEAREST_WITH_MIPMAPS" value="3" enum="TextureFilter">
			The texture filter reads from the nearest pixel in the nearest mipmap. This is the fastest way to read from textures with mipmaps.
		</constant>
		<constant name="TEXTURE_FILTER_LINEAR_WITH_MIPMAPS" value="4" enum="TextureFilter">
			The texture filter blends between the nearest 4 pixels and between the nearest 2 mipmaps. Use this for non-pixel art textures that may be viewed at a low scale (e.g. due to [Camera2D] zoom), as mipmaps are important to smooth out pixels that are smaller than on-screen pixels.
		</constant>
		<constant name="TEXTURE_FILTER_NEAREST_WITH_MIPMAPS_ANISOTROPIC" value="5" enum="TextureFilter">
			The texture filter reads from the nearest pixel, but selects a mipmap based on the angle between the surface and the camera view. This reduces artifacts on surfaces that are almost in line with the camera.
			[b]Note:[/b] This texture filter is rarely useful in 2D projects. [constant TEXTURE_FILTER_NEAREST_WITH_MIPMAPS] is usually more appropriate.
		</constant>
		<constant name="TEXTURE_FILTER_LINEAR_WITH_MIPMAPS_ANISOTROPIC" value="6" enum="TextureFilter">
			The texture filter blends between the nearest 4 pixels and selects a mipmap based on the angle between the surface and the camera view. This reduces artifacts on surfaces that are almost in line with the camera. This is the slowest of the filtering options, but results in the highest quality texturing.
			[b]Note:[/b] This texture filter is rarely useful in 2D projects. [constant TEXTURE_FILTER_LINEAR_WITH_MIPMAPS] is usually more appropriate.
		</constant>
		<constant name="TEXTURE_FILTER_MAX" value="7" enum="TextureFilter">
			Represents the size of the [enum TextureFilter] enum.
		</constant>
		<constant name="TEXTURE_REPEAT_PARENT_NODE" value="0" enum="TextureRepeat">
			The [CanvasItem] will inherit the filter from its parent.
		</constant>
		<constant name="TEXTURE_REPEAT_DISABLED" value="1" enum="TextureRepeat">
			Texture will not repeat.
		</constant>
		<constant name="TEXTURE_REPEAT_ENABLED" value="2" enum="TextureRepeat">
			Texture will repeat normally.
		</constant>
		<constant name="TEXTURE_REPEAT_MIRROR" value="3" enum="TextureRepeat">
			Texture will repeat in a 2x2 tiled mode, where elements at even positions are mirrored.
		</constant>
		<constant name="TEXTURE_REPEAT_MAX" value="4" enum="TextureRepeat">
			Represents the size of the [enum TextureRepeat] enum.
		</constant>
	</constants>
</class>