summaryrefslogtreecommitdiff
path: root/doc/classes/DynamicFontData.xml
blob: d9fd6bfcb0be10d848353041ae1fadad340c11d7 (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
<?xml version="1.0" encoding="UTF-8" ?>
<class name="DynamicFontData" inherits="Resource" category="Core" version="3.2">
	<brief_description>
		Used with [DynamicFont] to describe the location of a font file.
	</brief_description>
	<description>
		Used with [DynamicFont] to describe the location of a vector font file for dynamic rendering at runtime.
	</description>
	<tutorials>
	</tutorials>
	<demos>
	</demos>
	<methods>
	</methods>
	<members>
		<member name="antialiased" type="bool" setter="set_antialiased" getter="is_antialiased">
			Controls whether the font should be rendered with anti-aliasing.
		</member>
		<member name="font_path" type="String" setter="set_font_path" getter="get_font_path">
			The path to the vector font file.
		</member>
		<member name="hinting" type="int" setter="set_hinting" getter="get_hinting" enum="DynamicFontData.Hinting">
			The font hinting mode used by FreeType.
		</member>
	</members>
	<constants>
		<constant name="HINTING_NONE" value="0" enum="Hinting">
			Disable 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>
	</constants>
</class>