Font/Text Bug with Roboto Font?

Hi everyone :slight_smile:

I have a weird bug: I tried the Roboto Font for my project and it works fine, except for my game title.

My Game is called “Colory”, but somehow the ‘y’ isn´t on the screen. It seems that the ‘r’ followed by the ‘y’ doesn´t work. In combination with all other letters the ‘y’ is displayed. It works well with other fonts though.

Has anyone experienced a similar situation and what can I do - I´d really like the Roboto font for my game and I don´t necessarily want to change my game´s title.

Here is the code I am using for the title:

local titleTop = display.newText( { parent = uiGroup, text = "Colory", x = \_CX, y = 100, font = "Roboto-Thin", fontSize = 100 } )

Thanks :slight_smile:

Add a blank space at the end.

  • OR - (to keep it centered)

Put a blank space at front and end of string.

" Colory "

Thanks roaminggamer, solved my problem :slight_smile:

Add a blank space at the end.

  • OR - (to keep it centered)

Put a blank space at front and end of string.

" Colory "

Thanks roaminggamer, solved my problem :slight_smile: