Esempio n. 1
0
    private void ShowText(string s)
    {
        var font = Fonts[FontDropdown.value];

        OriginalText.font = font;
        OriginalText.text = s;

        AdjustedText.font = font;
        AdjustedText.text = KhmerFontAdjuster.Adjust(s);

        AdjustedText2.text = KhmerFontAdjuster.Adjust(s);
    }
Esempio n. 2
0
 private void ShowText(string s)
 {
     OriginalText.text = s;
     AdjustedText.text = KhmerFontAdjuster.Adjust(s);
 }