How do I make some floating text appear over my collision?
void OnCollisionEnter(Collision col)
{
if (col.gameObject.tag == "ball")
{
Control.score += 2.5;
//make floating text with random color
}
}