How can I change the opacity when the cursor is over the text?
Like in those pictures:
I'm using TextMeshPro
How can I change the opacity when the cursor is over the text?
Like in those pictures:
I'm using TextMeshPro
By using face color's alpha property
// R G B A
textmeshPro.faceColor = new Color32(255, 128, 0, 255);