Cyber/Assets/Scripts/Util/FontUtil.cs

26 lines
872 B
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
2017-05-14 20:51:50 +02:00
namespace Cyber.Util {
/// <summary>
/// Conjures useful information about fonts.
/// </summary>
public class FontUtil : MonoBehaviour {
/// <summary>
/// Gets the width of the character.
/// </summary>
/// <returns>The character width.</returns>
/// <param name="font">Font.</param>
/// <param name="fontSize">Font size.</param>
/// <param name="fontStyle">Font style.</param>
public static float GetCharacterWidth(Font font, int fontSize, FontStyle fontStyle) {
CharacterInfo CharInfo;
font.RequestCharactersInTexture("W", fontSize, fontStyle);
font.GetCharacterInfo('W', out CharInfo, fontSize, fontStyle);
return CharInfo.glyphWidth - 1;
}
}
2017-05-14 20:51:50 +02:00
}