All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
UnityLabelCreateOptions.h
1 #pragma once
2 
3 #include "VectorMath.h"
4 #include "Types.h"
5 
6 namespace Eegeo
7 {
8  namespace Unity
9  {
11  {
12  const char* labelId;
13 
14  const char* labelText;
15  v4 haloColor;
16  int baseFontSize;
17  double fontScale;
18 
19  u16 iconTexturePage;
20  double iconU0;
21  double iconV0;
22  double iconU1;
23  double iconV1;
24 
25  double iconWidth;
26  double iconHeight;
27 
28  bool hasTextComponent;
29  bool hasIconComponent;
30  };
31  }
32 }