Search Unity

Thai font fallback for Unity Android

Discussion in 'Editor & General Support' started by binfantino, Jan 29, 2014.

  1. binfantino

    binfantino

    Joined:
    Jan 29, 2014
    Posts:
    1
    We are having an issue supporting Thai characters in our game. Unity allows falling back to the system font for CJK however not for Thai. Does anyone know of a way to specify an additional fallback font? Other alternatives such as sysfont and ngui substantially increase the file size so we would like to avoid this.
     
  2. ricardo_arango

    ricardo_arango

    Unity Technologies

    Joined:
    Jun 18, 2009
    Posts:
    64
  3. StandLee

    StandLee

    Joined:
    Mar 2, 2015
    Posts:
    2

    In my thai language problem, there are not garbled but just empty in my android device. But English , Chinese, Japanese are all fine.
    I just follow this method but it is not working.
     
  4. phasiclabs

    phasiclabs

    Joined:
    Nov 13, 2013
    Posts:
    126
    You may have found the answer by now, but in case not, this might help.

    I was having trouble getting fallback fonts to work, and it turned out I was not specifying the list of fonts correctly.
    I had been formatting the list like this

    Font1
    Font2
    Font3

    Instead, it should be :

    Font1,Font2,Font3

    The documentation doesn't make this clear.
     
    rr-dw and ilmario like this.