summaryrefslogtreecommitdiff
path: root/doc/classes/TextServer.xml
blob: dbf7ae93aa9b245bc1e073c9b78d5e220ad43f5b (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
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
<?xml version="1.0" encoding="UTF-8" ?>
<class name="TextServer" inherits="Object" version="4.0">
	<brief_description>
		Interface for the fonts and complex text layouts.
	</brief_description>
	<description>
		[TextServer] is the API backend for managing fonts, and rendering complex text.
	</description>
	<tutorials>
	</tutorials>
	<methods>
		<method name="create_font_bitmap">
			<return type="RID" />
			<argument index="0" name="height" type="float" />
			<argument index="1" name="ascent" type="float" />
			<argument index="2" name="base_size" type="int" />
			<description>
				Creates new, empty bitmap font. To free the resulting font, use [method free_rid] method.
			</description>
		</method>
		<method name="create_font_memory">
			<return type="RID" />
			<argument index="0" name="data" type="PackedByteArray" />
			<argument index="1" name="type" type="String" />
			<argument index="2" name="base_size" type="int" default="16" />
			<description>
				Creates new font from the data in memory. To free the resulting font, use [method free_rid] method.
				Note: For non-scalable fonts [code]base_size[/code] is ignored, use [method font_get_base_size] to check actual font size.
			</description>
		</method>
		<method name="create_font_resource">
			<return type="RID" />
			<argument index="0" name="filename" type="String" />
			<argument index="1" name="base_size" type="int" default="16" />
			<description>
				Creates new font from the file. To free the resulting font, use [method free_rid] method.
				Note: For non-scalable fonts [code]base_size[/code] is ignored, use [method font_get_base_size] to check actual font size.
			</description>
		</method>
		<method name="create_font_system">
			<return type="RID" />
			<argument index="0" name="name" type="String" />
			<argument index="1" name="base_size" type="int" default="16" />
			<description>
				Creates new font from the system font. To free the resulting font, use [method free_rid] method.
				Note: This method is supported by servers with the [code]FEATURE_FONT_SYSTEM[/code] feature.
				Note: For non-scalable fonts [code]base_size[/code] is ignored, use [method font_get_base_size] to check actual font size.
			</description>
		</method>
		<method name="create_shaped_text">
			<return type="RID" />
			<argument index="0" name="direction" type="int" enum="TextServer.Direction" default="0" />
			<argument index="1" name="orientation" type="int" enum="TextServer.Orientation" default="0" />
			<description>
				Creates new buffer for complex text layout, with the given [code]direction[/code] and [code]orientation[/code]. To free the resulting buffer, use [method free_rid] method.
				Note: Direction is ignored if server does not support [code]FEATURE_BIDI_LAYOUT[/code] feature.
				Note: Orientation is ignored if server does not support [code]FEATURE_VERTICAL_LAYOUT[/code] feature.
			</description>
		</method>
		<method name="draw_hex_code_box" qualifiers="const">
			<return type="void" />
			<argument index="0" name="canvas" type="RID" />
			<argument index="1" name="size" type="int" />
			<argument index="2" name="pos" type="Vector2" />
			<argument index="3" name="index" type="int" />
			<argument index="4" name="color" type="Color" />
			<description>
				Draws box displaying character hexadecimal code. Used for replacing missing characters.
			</description>
		</method>
		<method name="font_bitmap_add_char">
			<return type="void" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="char" type="int" />
			<argument index="2" name="texture_idx" type="int" />
			<argument index="3" name="rect" type="Rect2" />
			<argument index="4" name="align" type="Vector2" />
			<argument index="5" name="advance" type="float" />
			<description>
				Adds a character to the font, where [code]character[/code] is the Unicode value, [code]texture[/code] is the texture index, [code]rect[/code] is the region in the texture (in pixels!), [code]align[/code] is the (optional) alignment for the character and [code]advance[/code] is the (optional) advance.
			</description>
		</method>
		<method name="font_bitmap_add_kerning_pair">
			<return type="void" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="A" type="int" />
			<argument index="2" name="B" type="int" />
			<argument index="3" name="kerning" type="int" />
			<description>
				Adds a kerning pair to the bitmap font as a difference. Kerning pairs are special cases where a typeface advance is determined by the next character.
			</description>
		</method>
		<method name="font_bitmap_add_texture">
			<return type="void" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="texture" type="Texture" />
			<description>
				Adds a texture to the bitmap font.
			</description>
		</method>
		<method name="font_draw_glyph" qualifiers="const">
			<return type="Vector2" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="canvas" type="RID" />
			<argument index="2" name="size" type="int" />
			<argument index="3" name="pos" type="Vector2" />
			<argument index="4" name="index" type="int" />
			<argument index="5" name="color" type="Color" default="Color(1, 1, 1, 1)" />
			<description>
				Draws single glyph into a canvas item at the position, using [code]font[/code] at the size [code]size[/code].
				Note: Glyph index is specific to the font, use glyphs indices returned by [method shaped_text_get_glyphs] or [method font_get_glyph_index].
			</description>
		</method>
		<method name="font_draw_glyph_outline" qualifiers="const">
			<return type="Vector2" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="canvas" type="RID" />
			<argument index="2" name="size" type="int" />
			<argument index="3" name="outline_size" type="int" />
			<argument index="4" name="pos" type="Vector2" />
			<argument index="5" name="index" type="int" />
			<argument index="6" name="color" type="Color" default="Color(1, 1, 1, 1)" />
			<description>
				Draws single glyph outline of size [code]outline_size[/code] into a canvas item at the position, using [code]font[/code] at the size [code]size[/code].
				Note: Glyph index is specific to the font, use glyphs indices returned by [method shaped_text_get_glyphs] or [method font_get_glyph_index].
			</description>
		</method>
		<method name="font_get_antialiased" qualifiers="const">
			<return type="bool" />
			<argument index="0" name="font" type="RID" />
			<description>
				Returns [code]true[/code], if font anti-aliasing is supported and enabled.
			</description>
		</method>
		<method name="font_get_ascent" qualifiers="const">
			<return type="float" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="size" type="int" />
			<description>
				Returns the font ascent (number of pixels above the baseline).
			</description>
		</method>
		<method name="font_get_base_size" qualifiers="const">
			<return type="float" />
			<argument index="0" name="font" type="RID" />
			<description>
				Returns the default size of the font.
			</description>
		</method>
		<method name="font_get_descent" qualifiers="const">
			<return type="float" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="size" type="int" />
			<description>
				Returns the font descent (number of pixels below the baseline).
			</description>
		</method>
		<method name="font_get_distance_field_hint" qualifiers="const">
			<return type="bool" />
			<argument index="0" name="font" type="RID" />
			<description>
				Returns [code]true[/code], if distance field hint is enabled.
			</description>
		</method>
		<method name="font_get_feature_list" qualifiers="const">
			<return type="Dictionary" />
			<argument index="0" name="font" type="RID" />
			<description>
				Returns list of OpenType features supported by font.
			</description>
		</method>
		<method name="font_get_force_autohinter" qualifiers="const">
			<return type="bool" />
			<argument index="0" name="font" type="RID" />
			<description>
				Returns [code]true[/code], if autohinter is supported and enabled.
			</description>
		</method>
		<method name="font_get_glyph_advance" qualifiers="const">
			<return type="Vector2" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="index" type="int" />
			<argument index="2" name="size" type="int" />
			<description>
				Returns advance of the glyph.
			</description>
		</method>
		<method name="font_get_glyph_contours" qualifiers="const">
			<return type="Dictionary" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="size" type="int" />
			<argument index="2" name="index" type="int" />
			<description>
				Returns outline contours of the glyph in a Dictionary.
				[code]points[/code]         - [PackedVector3Array], containing outline points. [code]x[/code] and [code]y[/code] are point coordinates. [code]z[/code] is the type of the point, using the [enum ContourPointTag] values.
				[code]contours[/code]       - [PackedInt32Array], containing indices the end points of each contour.
				[code]orientation[/code]    - [bool], contour orientation. If [code]true[/code], clockwise contours must be filled.
			</description>
		</method>
		<method name="font_get_glyph_index" qualifiers="const">
			<return type="int" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="char" type="int" />
			<argument index="2" name="variation_selector" type="int" default="0" />
			<description>
				Returns the glyph index of a [code]char[/code], optionally modified by the [code]variation_selector[/code].
			</description>
		</method>
		<method name="font_get_glyph_kerning" qualifiers="const">
			<return type="Vector2" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="index_a" type="int" />
			<argument index="2" name="index_b" type="int" />
			<argument index="3" name="size" type="int" />
			<description>
				Returns a kerning of the pair of glyphs.
			</description>
		</method>
		<method name="font_get_height" qualifiers="const">
			<return type="float" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="size" type="int" />
			<description>
				Returns the total font height (ascent plus descent) in pixels.
			</description>
		</method>
		<method name="font_get_hinting" qualifiers="const">
			<return type="int" enum="TextServer.Hinting" />
			<argument index="0" name="font" type="RID" />
			<description>
				Returns the font hinting.
			</description>
		</method>
		<method name="font_get_language_support_override">
			<return type="bool" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="language" type="String" />
			<description>
				Returns [code]true[/code] if support override is enabled for the [code]language[/code].
			</description>
		</method>
		<method name="font_get_language_support_overrides">
			<return type="PackedStringArray" />
			<argument index="0" name="font" type="RID" />
			<description>
				Returns list of language support overrides.
			</description>
		</method>
		<method name="font_get_oversampling" qualifiers="const">
			<return type="float" />
			<description>
				Returns the font oversampling factor, shared by all fonts in the TextServer.
			</description>
		</method>
		<method name="font_get_script_support_override">
			<return type="bool" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="script" type="String" />
			<description>
				Returns [code]true[/code] if support override is enabled for the [code]script[/code].
			</description>
		</method>
		<method name="font_get_script_support_overrides">
			<return type="PackedStringArray" />
			<argument index="0" name="font" type="RID" />
			<description>
				Returns list of script support overrides.
			</description>
		</method>
		<method name="font_get_spacing_glyph" qualifiers="const">
			<return type="int" />
			<argument index="0" name="font" type="RID" />
			<description>
				Returns extra spacing for each glyph in pixels.
			</description>
		</method>
		<method name="font_get_spacing_space" qualifiers="const">
			<return type="int" />
			<argument index="0" name="font" type="RID" />
			<description>
				Sets extra spacing for each glyph in pixels.
			</description>
		</method>
		<method name="font_get_supported_chars" qualifiers="const">
			<return type="String" />
			<argument index="0" name="font" type="RID" />
			<description>
				Returns a string containing all the characters available in the font.
			</description>
		</method>
		<method name="font_get_underline_position" qualifiers="const">
			<return type="float" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="size" type="int" />
			<description>
				Returns underline offset (number of pixels below the baseline).
			</description>
		</method>
		<method name="font_get_underline_thickness" qualifiers="const">
			<return type="float" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="size" type="int" />
			<description>
				Returns underline thickness in pixels.
			</description>
		</method>
		<method name="font_get_variation" qualifiers="const">
			<return type="float" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="tag" type="String" />
			<description>
				Returns variation coordinate [code]tag[/code].
			</description>
		</method>
		<method name="font_get_variation_list" qualifiers="const">
			<return type="Dictionary" />
			<argument index="0" name="font" type="RID" />
			<description>
				Returns list of supported [url=https://docs.microsoft.com/en-us/typography/opentype/spec/dvaraxisreg]variation coordinates[/url], each coordinate is returned as [code]tag: Vector3i(min_value,max_value,default_value)[/code].
				Font variations allow for continuous change of glyph characteristics along some given design axis, such as weight, width or slant.
			</description>
		</method>
		<method name="font_has_char" qualifiers="const">
			<return type="bool" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="char" type="int" />
			<description>
				Returns [code]true[/code] if [code]char[/code] is available in the font.
			</description>
		</method>
		<method name="font_has_outline" qualifiers="const">
			<return type="bool" />
			<argument index="0" name="font" type="RID" />
			<description>
				Returns [code]true[/code], if font supports glyph outlines.
			</description>
		</method>
		<method name="font_is_language_supported" qualifiers="const">
			<return type="bool" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="language" type="String" />
			<description>
				Returns [code]true[/code], if font supports given language (ISO 639 code).
			</description>
		</method>
		<method name="font_is_script_supported" qualifiers="const">
			<return type="bool" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="script" type="String" />
			<description>
				Returns [code]true[/code], if font supports given script (ISO 15924 code).
			</description>
		</method>
		<method name="font_remove_language_support_override">
			<return type="void" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="language" type="String" />
			<description>
				Remove language support override.
			</description>
		</method>
		<method name="font_remove_script_support_override">
			<return type="void" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="script" type="String" />
			<description>
				Removes script support override.
			</description>
		</method>
		<method name="font_set_antialiased">
			<return type="void" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="antialiased" type="bool" />
			<description>
				Sets font anti-aliasing.
			</description>
		</method>
		<method name="font_set_distance_field_hint">
			<return type="void" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="distance_field" type="bool" />
			<description>
				Sets font distance field hint.
			</description>
		</method>
		<method name="font_set_force_autohinter">
			<return type="void" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="enabeld" type="bool" />
			<description>
				Enables/disables default autohinter.
			</description>
		</method>
		<method name="font_set_hinting">
			<return type="void" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="hinting" type="int" enum="TextServer.Hinting" />
			<description>
				Sets font hinting.
			</description>
		</method>
		<method name="font_set_language_support_override">
			<return type="void" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="language" type="String" />
			<argument index="2" name="supported" type="bool" />
			<description>
				Adds override for [method font_is_language_supported].
			</description>
		</method>
		<method name="font_set_oversampling">
			<return type="void" />
			<argument index="0" name="oversampling" type="float" />
			<description>
				Sets oversampling factor, shared by all font in the TextServer.
			</description>
		</method>
		<method name="font_set_script_support_override">
			<return type="void" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="script" type="String" />
			<argument index="2" name="supported" type="bool" />
			<description>
				Adds override for [method font_is_script_supported].
			</description>
		</method>
		<method name="font_set_spacing_glyph">
			<return type="void" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="value" type="int" />
			<description>
				Returns extra spacing for the space character in pixels.
			</description>
		</method>
		<method name="font_set_spacing_space">
			<return type="void" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="value" type="int" />
			<description>
				Sets extra spacing for the space character in pixels.
			</description>
		</method>
		<method name="font_set_variation">
			<return type="void" />
			<argument index="0" name="font" type="RID" />
			<argument index="1" name="tag" type="String" />
			<argument index="2" name="value" type="float" />
			<description>
				Sets variation coordinate [code]name[/code]. Unsupported coordinates will be silently ignored.
			</description>
		</method>
		<method name="format_number" qualifiers="const">
			<return type="String" />
			<argument index="0" name="number" type="String" />
			<argument index="1" name="language" type="String" default="&quot;&quot;" />
			<description>
				Converts a number from the Western Arabic (0..9) to the numeral systems used in [code]language[/code].
			</description>
		</method>
		<method name="free_rid">
			<return type="void" />
			<argument index="0" name="rid" type="RID" />
			<description>
				Frees an object created by this [TextServer].
			</description>
		</method>
		<method name="get_hex_code_box_size" qualifiers="const">
			<return type="Vector2" />
			<argument index="0" name="size" type="int" />
			<argument index="1" name="index" type="int" />
			<description>
				Returns size of the replacement character (box with character hexadecimal code that is drawn in place of invalid characters).
			</description>
		</method>
		<method name="get_name" qualifiers="const">
			<return type="String" />
			<description>
				Returns the name of the server interface.
			</description>
		</method>
		<method name="get_system_fonts" qualifiers="const">
			<return type="PackedStringArray" />
			<description>
				Returns list of available system fonts.
				Note: This method is supported by servers with the [code]FEATURE_FONT_SYSTEM[/code] feature.
			</description>
		</method>
		<method name="has">
			<return type="bool" />
			<argument index="0" name="rid" type="RID" />
			<description>
				Returns [code]true[/code] if [code]rid[/code] is valid resource owned by this text server.
			</description>
		</method>
		<method name="has_feature">
			<return type="bool" />
			<argument index="0" name="feature" type="int" enum="TextServer.Feature" />
			<description>
				Returns [code]true[/code] if the server supports a feature.
			</description>
		</method>
		<method name="is_locale_right_to_left">
			<return type="bool" />
			<argument index="0" name="locale" type="String" />
			<description>
				Returns [code]true[/code] if locale is right-to-left.
			</description>
		</method>
		<method name="load_support_data">
			<return type="bool" />
			<argument index="0" name="filename" type="String" />
			<description>
				Loads optional TextServer database (e.g. ICU break iterators and dictionaries).
				Note: This function should be called before any other TextServer functions used, otherwise it won't have any effect.
			</description>
		</method>
		<method name="name_to_tag">
			<return type="int" />
			<argument index="0" name="name" type="String" />
			<description>
				Converts readable feature, variation, script or language name to OpenType tag.
			</description>
		</method>
		<method name="parse_number" qualifiers="const">
			<return type="String" />
			<argument index="0" name="number" type="String" />
			<argument index="1" name="language" type="String" default="&quot;&quot;" />
			<description>
				Converts a number from the numeral systems used in [code]language[/code] to Western Arabic (0..9).
			</description>
		</method>
		<method name="percent_sign" qualifiers="const">
			<return type="String" />
			<argument index="0" name="language" type="String" default="&quot;&quot;" />
			<description>
				Returns percent sign used in the [code]language[/code].
			</description>
		</method>
		<method name="shaped_text_add_object">
			<return type="bool" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="key" type="Variant" />
			<argument index="2" name="size" type="Vector2" />
			<argument index="3" name="inline_align" type="int" enum="VAlign" default="1" />
			<argument index="4" name="length" type="int" default="1" />
			<description>
				Adds inline object to the text buffer, [code]key[/code] must be unique. In the text, object is represented as [code]length[/code] object replacement characters.
			</description>
		</method>
		<method name="shaped_text_add_string">
			<return type="bool" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="text" type="String" />
			<argument index="2" name="fonts" type="Array" />
			<argument index="3" name="size" type="int" />
			<argument index="4" name="opentype_features" type="Dictionary" default="{
}" />
			<argument index="5" name="language" type="String" default="&quot;&quot;" />
			<description>
				Adds text span and font to draw it to the text buffer.
			</description>
		</method>
		<method name="shaped_text_clear">
			<return type="void" />
			<argument index="0" name="rid" type="RID" />
			<description>
				Clears text buffer (removes text and inline objects).
			</description>
		</method>
		<method name="shaped_text_draw" qualifiers="const">
			<return type="void" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="canvas" type="RID" />
			<argument index="2" name="pos" type="Vector2" />
			<argument index="3" name="clip_l" type="float" default="-1" />
			<argument index="4" name="clip_r" type="float" default="-1" />
			<argument index="5" name="color" type="Color" default="Color(1, 1, 1, 1)" />
			<description>
				Draw shaped text into a canvas item at a given position, with [code]color[/code]. [code]pos[/code] specifies the leftmost point of the baseline (for horizontal layout) or topmost point of the baseline (for vertical layout).
			</description>
		</method>
		<method name="shaped_text_draw_outline" qualifiers="const">
			<return type="void" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="canvas" type="RID" />
			<argument index="2" name="pos" type="Vector2" />
			<argument index="3" name="clip_l" type="float" default="-1" />
			<argument index="4" name="clip_r" type="float" default="-1" />
			<argument index="5" name="outline_size" type="int" default="1" />
			<argument index="6" name="color" type="Color" default="Color(1, 1, 1, 1)" />
			<description>
				Draw the outline of the shaped text into a canvas item at a given position, with [code]color[/code]. [code]pos[/code] specifies the leftmost point of the baseline (for horizontal layout) or topmost point of the baseline (for vertical layout).
			</description>
		</method>
		<method name="shaped_text_fit_to_width">
			<return type="float" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="width" type="float" />
			<argument index="2" name="jst_flags" type="int" default="3" />
			<description>
				Adjusts text with to fit to specified width, returns new text width.
			</description>
		</method>
		<method name="shaped_text_get_ascent" qualifiers="const">
			<return type="float" />
			<argument index="0" name="shaped" type="RID" />
			<description>
				Returns the text ascent (number of pixels above the baseline for horizontal layout or to the left of baseline for vertical).
				Note: overall ascent can be higher than font ascent, if some glyphs are displaced from the baseline.
			</description>
		</method>
		<method name="shaped_text_get_carets" qualifiers="const">
			<return type="Dictionary" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="position" type="int" />
			<description>
				Returns shapes of the carets corresponding to the character offset [code]position[/code] in the text. Returned caret shape is 1 pixel wide rectangle.
			</description>
		</method>
		<method name="shaped_text_get_descent" qualifiers="const">
			<return type="float" />
			<argument index="0" name="shaped" type="RID" />
			<description>
				Returns the text descent (number of pixels below the baseline for horizontal layout or to the right of baseline for vertical).
				Note: overall descent can be higher than font descent, if some glyphs are displaced from the baseline.
			</description>
		</method>
		<method name="shaped_text_get_direction" qualifiers="const">
			<return type="int" enum="TextServer.Direction" />
			<argument index="0" name="shaped" type="RID" />
			<description>
				Returns direction of the text.
			</description>
		</method>
		<method name="shaped_text_get_dominant_direciton_in_range" qualifiers="const">
			<return type="int" enum="TextServer.Direction" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="start" type="int" />
			<argument index="2" name="end" type="int" />
			<description>
				Returns dominant direction of in the range of text.
			</description>
		</method>
		<method name="shaped_text_get_glyphs" qualifiers="const">
			<return type="Array" />
			<argument index="0" name="shaped" type="RID" />
			<description>
				Returns text glyphs.
			</description>
		</method>
		<method name="shaped_text_get_line_breaks" qualifiers="const">
			<return type="Array" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="width" type="float" />
			<argument index="2" name="start" type="int" default="0" />
			<argument index="3" name="break_flags" type="int" default="48" />
			<description>
				Breaks text to the lines and returns character ranges for each line.
			</description>
		</method>
		<method name="shaped_text_get_line_breaks_adv" qualifiers="const">
			<return type="Array" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="width" type="PackedFloat32Array" />
			<argument index="2" name="start" type="int" default="0" />
			<argument index="3" name="once" type="bool" default="true" />
			<argument index="4" name="break_flags" type="int" default="48" />
			<description>
				Breaks text to the lines and columns. Returns character ranges for each segment.
			</description>
		</method>
		<method name="shaped_text_get_object_rect" qualifiers="const">
			<return type="Rect2" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="key" type="Variant" />
			<description>
				Returns bounding rectangle of the inline object.
			</description>
		</method>
		<method name="shaped_text_get_objects" qualifiers="const">
			<return type="Array" />
			<argument index="0" name="shaped" type="RID" />
			<description>
				Returns array of inline objects.
			</description>
		</method>
		<method name="shaped_text_get_orientation" qualifiers="const">
			<return type="int" enum="TextServer.Orientation" />
			<argument index="0" name="shaped" type="RID" />
			<description>
				Returns text orientation.
			</description>
		</method>
		<method name="shaped_text_get_parent" qualifiers="const">
			<return type="RID" />
			<argument index="0" name="shaped" type="RID" />
			<description>
				Sets text orientation.
			</description>
		</method>
		<method name="shaped_text_get_preserve_control" qualifiers="const">
			<return type="bool" />
			<argument index="0" name="shaped" type="RID" />
			<description>
				Returns [code]true[/code] if text buffer is configured to display control characters.
			</description>
		</method>
		<method name="shaped_text_get_preserve_invalid" qualifiers="const">
			<return type="bool" />
			<argument index="0" name="shaped" type="RID" />
			<description>
				Returns [code]true[/code] if text buffer is configured to display hexadecimal codes in place of invalid characters.
				Note: If set to [code]false[/code], nothing is displayed in place of invalid characters.
			</description>
		</method>
		<method name="shaped_text_get_range" qualifiers="const">
			<return type="Vector2i" />
			<argument index="0" name="shaped" type="RID" />
			<description>
				Returns substring buffer character range in the parent buffer.
			</description>
		</method>
		<method name="shaped_text_get_selection" qualifiers="const">
			<return type="Array" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="start" type="int" />
			<argument index="2" name="end" type="int" />
			<description>
				Returns selection rectangles for the specified character range.
			</description>
		</method>
		<method name="shaped_text_get_size" qualifiers="const">
			<return type="Vector2" />
			<argument index="0" name="shaped" type="RID" />
			<description>
				Returns size of the text.
			</description>
		</method>
		<method name="shaped_text_get_underline_position" qualifiers="const">
			<return type="float" />
			<argument index="0" name="shaped" type="RID" />
			<description>
				Returns pixel offset of the underline below the baseline.
			</description>
		</method>
		<method name="shaped_text_get_underline_thickness" qualifiers="const">
			<return type="float" />
			<argument index="0" name="shaped" type="RID" />
			<description>
				Returns thickness of the underline.
			</description>
		</method>
		<method name="shaped_text_get_width" qualifiers="const">
			<return type="float" />
			<argument index="0" name="shaped" type="RID" />
			<description>
				Returns width (for horizontal layout) or height (for vertical) of the text.
			</description>
		</method>
		<method name="shaped_text_get_word_breaks" qualifiers="const">
			<return type="Array" />
			<argument index="0" name="shaped" type="RID" />
			<description>
				Breaks text into words and returns array of character ranges.
			</description>
		</method>
		<method name="shaped_text_hit_test_grapheme" qualifiers="const">
			<return type="int" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="coords" type="float" />
			<description>
				Returns grapheme index at the specified pixel offset at the baseline, or [code]-1[/code] if none is found.
			</description>
		</method>
		<method name="shaped_text_hit_test_position" qualifiers="const">
			<return type="int" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="coords" type="float" />
			<description>
				Returns caret character offset at the specified pixel offset at the baseline. This function always returns a valid position.
			</description>
		</method>
		<method name="shaped_text_is_ready" qualifiers="const">
			<return type="bool" />
			<argument index="0" name="shaped" type="RID" />
			<description>
				Returns [code]true[/code] if buffer is successfully shaped.
			</description>
		</method>
		<method name="shaped_text_next_grapheme_pos">
			<return type="int" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="pos" type="int" />
			<description>
				Returns composite character end position closest to the [code]pos[/code].
			</description>
		</method>
		<method name="shaped_text_overrun_trim_to_width">
			<return type="void" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="width" type="float" default="0" />
			<argument index="2" name="overrun_trim_flags" type="int" default="0" />
			<description>
				Trims text if it exceeds the given width.
			</description>
		</method>
		<method name="shaped_text_prev_grapheme_pos">
			<return type="int" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="pos" type="int" />
			<description>
				Returns composite character start position closest to the [code]pos[/code].
			</description>
		</method>
		<method name="shaped_text_resize_object">
			<return type="bool" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="key" type="Variant" />
			<argument index="2" name="size" type="Vector2" />
			<argument index="3" name="inline_align" type="int" enum="VAlign" default="1" />
			<description>
				Sets new size and alignment of embedded object.
			</description>
		</method>
		<method name="shaped_text_set_bidi_override">
			<return type="void" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="override" type="Array" />
			<description>
				Overrides BiDi for the structured text.
				Override ranges should cover full source text without overlaps. BiDi algorithm will be used on each range separately.
			</description>
		</method>
		<method name="shaped_text_set_direction">
			<return type="void" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="direction" type="int" enum="TextServer.Direction" default="0" />
			<description>
				Sets desired text direction. If set to [code]TEXT_DIRECTION_AUTO[/code], direction will be detected based on the buffer contents and current locale.
				Note: Direction is ignored if server does not support [code]FEATURE_BIDI_LAYOUT[/code] feature.
			</description>
		</method>
		<method name="shaped_text_set_orientation">
			<return type="void" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="orientation" type="int" enum="TextServer.Orientation" default="0" />
			<description>
				Sets desired text orientation.
				Note: Orientation is ignored if server does not support [code]FEATURE_VERTICAL_LAYOUT[/code] feature.
			</description>
		</method>
		<method name="shaped_text_set_preserve_control">
			<return type="void" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="enabled" type="bool" />
			<description>
				If set to [code]true[/code] text buffer will display control characters.
			</description>
		</method>
		<method name="shaped_text_set_preserve_invalid">
			<return type="void" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="enabled" type="bool" />
			<description>
				If set to [code]true[/code] text buffer will display invalid characters as hexadecimal codes, otherwise nothing is displayed.
			</description>
		</method>
		<method name="shaped_text_shape">
			<return type="bool" />
			<argument index="0" name="shaped" type="RID" />
			<description>
				Shapes buffer if it's not shaped. Returns [code]true[/code] if the string is shaped successfully.
				Note: It is not necessary to call this function manually, buffer will be shaped automatically as soon as any of its output data is requested.
			</description>
		</method>
		<method name="shaped_text_substr" qualifiers="const">
			<return type="RID" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="start" type="int" />
			<argument index="2" name="length" type="int" />
			<description>
				Returns text buffer for the substring of the text in the [code]shaped[/code] text buffer (including inline objects).
			</description>
		</method>
		<method name="shaped_text_tab_align">
			<return type="float" />
			<argument index="0" name="shaped" type="RID" />
			<argument index="1" name="tab_stops" type="PackedFloat32Array" />
			<description>
				Aligns shaped text to the given tab-stops.
			</description>
		</method>
		<method name="tag_to_name">
			<return type="String" />
			<argument index="0" name="tag" type="int" />
			<description>
				Converts OpenType tag to readable feature, variation, script or language name.
			</description>
		</method>
	</methods>
	<constants>
		<constant name="DIRECTION_AUTO" value="0" enum="Direction">
			Text direction is determined based on contents and current locale.
		</constant>
		<constant name="DIRECTION_LTR" value="1" enum="Direction">
			Text is written from left to right.
		</constant>
		<constant name="DIRECTION_RTL" value="2" enum="Direction">
			Text is written from right to left.
		</constant>
		<constant name="ORIENTATION_HORIZONTAL" value="0" enum="Orientation">
			Text is written horizontally.
		</constant>
		<constant name="ORIENTATION_VERTICAL" value="1" enum="Orientation">
			Left to right text is written vertically from top to bottom.
			Right to left text is written vertically from bottom to top.
		</constant>
		<constant name="JUSTIFICATION_NONE" value="0" enum="JustificationFlag">
			Do not justify text.
		</constant>
		<constant name="JUSTIFICATION_KASHIDA" value="1" enum="JustificationFlag">
			Justify text by adding and removing kashidas.
		</constant>
		<constant name="JUSTIFICATION_WORD_BOUND" value="2" enum="JustificationFlag">
			Justify text by changing width of the spaces between the words.
		</constant>
		<constant name="JUSTIFICATION_TRIM_EDGE_SPACES" value="4" enum="JustificationFlag">
			Remove trailing and leading spaces from the justified text.
		</constant>
		<constant name="JUSTIFICATION_AFTER_LAST_TAB" value="8" enum="JustificationFlag">
			Only apply justification to the part of the text after the last tab.
		</constant>
		<constant name="BREAK_NONE" value="0" enum="LineBreakFlag">
			Do not break the line.
		</constant>
		<constant name="BREAK_MANDATORY" value="16" enum="LineBreakFlag">
			Break the line at the line mandatory break characters (e.g. [code]"\n"[/code]).
		</constant>
		<constant name="BREAK_WORD_BOUND" value="32" enum="LineBreakFlag">
			Break the line between the words.
		</constant>
		<constant name="BREAK_GRAPHEME_BOUND" value="64" enum="LineBreakFlag">
			Break the line between any unconnected graphemes.
		</constant>
		<constant name="OVERRUN_NO_TRIMMING" value="0" enum="TextOverrunFlag">
			No trimming is performed.
		</constant>
		<constant name="OVERRUN_TRIM" value="1" enum="TextOverrunFlag">
			Trims the text when it exceeds the given width.
		</constant>
		<constant name="OVERRUN_TRIM_WORD_ONLY" value="2" enum="TextOverrunFlag">
			Trims the text per word instead of per grapheme.
		</constant>
		<constant name="OVERRUN_ADD_ELLIPSIS" value="4" enum="TextOverrunFlag">
			Determines whether an ellipsis should be added at the end of the text.
		</constant>
		<constant name="OVERRUN_ENFORCE_ELLIPSIS" value="8" enum="TextOverrunFlag">
			Determines whether the ellipsis at the end of the text is enforced and may not be hidden.
		</constant>
		<constant name="GRAPHEME_IS_RTL" value="2" enum="GraphemeFlag">
			Grapheme is part of right-to-left or bottom-to-top run.
		</constant>
		<constant name="GRAPHEME_IS_VIRTUAL" value="4" enum="GraphemeFlag">
			Grapheme is not part of source text, it was added by justification process.
		</constant>
		<constant name="GRAPHEME_IS_SPACE" value="8" enum="GraphemeFlag">
			Grapheme is whitespace.
		</constant>
		<constant name="GRAPHEME_IS_BREAK_HARD" value="16" enum="GraphemeFlag">
			Grapheme is mandatory break point (e.g. [code]"\n"[/code]).
		</constant>
		<constant name="GRAPHEME_IS_BREAK_SOFT" value="32" enum="GraphemeFlag">
			Grapheme is optional break point (e.g. space).
		</constant>
		<constant name="GRAPHEME_IS_TAB" value="64" enum="GraphemeFlag">
			Grapheme is the tabulation character.
		</constant>
		<constant name="GRAPHEME_IS_ELONGATION" value="128" enum="GraphemeFlag">
			Grapheme is kashida.
		</constant>
		<constant name="GRAPHEME_IS_PUNCTUATION" value="256" enum="GraphemeFlag">
			Grapheme is punctuation character.
		</constant>
		<constant name="HINTING_NONE" value="0" enum="Hinting">
			Disables font hinting (smoother but less crisp).
		</constant>
		<constant name="HINTING_LIGHT" value="1" enum="Hinting">
			Use the light font hinting mode.
		</constant>
		<constant name="HINTING_NORMAL" value="2" enum="Hinting">
			Use the default font hinting mode (crisper but less smooth).
		</constant>
		<constant name="FEATURE_BIDI_LAYOUT" value="1" enum="Feature">
			TextServer supports bidirectional layouts.
		</constant>
		<constant name="FEATURE_VERTICAL_LAYOUT" value="2" enum="Feature">
			TextServer supports vertical layouts.
		</constant>
		<constant name="FEATURE_SHAPING" value="4" enum="Feature">
			TextServer supports complex text shaping.
		</constant>
		<constant name="FEATURE_KASHIDA_JUSTIFICATION" value="8" enum="Feature">
			TextServer supports justification using kashidas.
		</constant>
		<constant name="FEATURE_BREAK_ITERATORS" value="16" enum="Feature">
			TextServer supports complex line/word breaking rules (e.g. dictionary based).
		</constant>
		<constant name="FEATURE_FONT_SYSTEM" value="32" enum="Feature">
			TextServer supports loading system fonts.
		</constant>
		<constant name="FEATURE_FONT_VARIABLE" value="64" enum="Feature">
			TextServer supports variable fonts.
		</constant>
		<constant name="FEATURE_USE_SUPPORT_DATA" value="128" enum="Feature">
			TextServer require external data file for some features.
		</constant>
		<constant name="CONTOUR_CURVE_TAG_ON" value="1" enum="ContourPointTag">
			Contour point is on the curve.
		</constant>
		<constant name="CONTOUR_CURVE_TAG_OFF_CONIC" value="0" enum="ContourPointTag">
			Contour point isn't on the curve, but serves as a control point for a conic (quadratic) Bézier arc.
		</constant>
		<constant name="CONTOUR_CURVE_TAG_OFF_CUBIC" value="2" enum="ContourPointTag">
			Contour point isn't on the curve, but serves as a control point for a cubic Bézier arc.
		</constant>
	</constants>
</class>