Hi,
I don't think you are doing anything wrong.
Still try this:
using UnityEngine.UI;
public class yourClass : MonoBehaviour
{
public Text largeAlphabetHighlighter; // Pass this value from inspector..
void Start()
{
largeAlphabetHighlighter.text = passedString;
}
}
↧