|
RenderStack 11.06.1
|
Public Member Functions | |
| FontCommon (XmlNode node) | |
Public Attributes | |
| float | LineHeight |
| float | Base |
| float | ScaleW |
| float | ScaleH |
| int | Pages |
| bool | Packed |
| int | AlphaChnl |
| int | RedChnl |
| int | GreenChnl |
| int | BlueChnl |
Definition at line 81 of file FontStyle.cs.
| RenderStack.UI.FontStyle.FontCommon.FontCommon | ( | XmlNode | node | ) |
Definition at line 94 of file FontStyle.cs.
{
LineHeight = float.Parse(node.Attributes["lineHeight"].Value);
Base = float.Parse(node.Attributes["base"].Value);
ScaleW = float.Parse(node.Attributes["scaleW"].Value);
ScaleH = float.Parse(node.Attributes["scaleH"].Value);
Pages = int.Parse(node.Attributes["pages"].Value);
Packed = int.Parse(node.Attributes["packed"].Value) != 0;
AlphaChnl = int.Parse(node.Attributes["alphaChnl"].Value);
RedChnl = int.Parse(node.Attributes["redChnl"].Value);
GreenChnl = int.Parse(node.Attributes["greenChnl"].Value);
BlueChnl = int.Parse(node.Attributes["blueChnl"].Value);
}
Definition at line 83 of file FontStyle.cs.
Definition at line 84 of file FontStyle.cs.
Definition at line 85 of file FontStyle.cs.
Referenced by RenderStack.UI.FontStyle.FontChar.FontChar().
Definition at line 86 of file FontStyle.cs.
Referenced by RenderStack.UI.FontStyle.FontChar.FontChar().
Definition at line 87 of file FontStyle.cs.
Definition at line 88 of file FontStyle.cs.
Definition at line 89 of file FontStyle.cs.
Definition at line 90 of file FontStyle.cs.
Definition at line 91 of file FontStyle.cs.
Definition at line 92 of file FontStyle.cs.
1.7.4