I need to show some feedback text when the player gets something, for example, pickup a hidden token, and "YOU FOUND A GOLDEN TOKEN!" appears on the screen for a few seconds.
Right now, I am instantiating a Prefab which is setup this way: UIRoot-Camera-Panel-UILabel, and I destroy it after X seconds.
But, I already have a main HUD with a UIRoot-Camera-Anchor-Panel present in the scene for my normal HUD, so the way I am doing it above seems over-complicated and creates another UI Camera as well.
Does NGUI have a "CreateHUDText" function/tool I am un-aware of? What would be the better way to show a temporary on-screen message with NGUI?
Thanks for your time!
Stephane