summaryrefslogtreecommitdiff
path: root/Runtime/GUI/TextMesh.h
blob: 7f37e5eab57abbcc3e6bcea022f19611e8938b41 (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
#pragma once

enum ETextAnchor
{
    TextAnchor_UpperLeft,
    TextAnchor_UpperCenter,
    TextAnchor_UpperRight,
    TextAnchor_MiddleLeft,
    TextAnchor_MiddleCenter,
    TextAnchor_MiddleRight,
    TextAnchor_LowerLeft,
    TextAnchor_LowerCenter,
    TextAnchor_LowerRight,
    TextAnchor_DontCare		
};

enum ETextAlignment {
    TextAlignment_Left,
    TextAlignment_Center,
    TextAlignment_Right,
    TextAlignment_Auto,
};