I have some data that I am pulling from a service and in that service I'm calling
void displayLocation()
{
if ( uiLabel != null )
{
uiLabel.text = "Location: (" + Input.location.lastData.latitude + "," + Input.location.lastData.longitude + ")";
}
}
However what I'm getting back on the screen is that each label is overwriting the other. This is a very simple scene consisting of just the service and a 2D UI with a Panel and a UILabel on it. I'm a little bit at a loss as to why it doesn't appear that the buffer is being cleared between frames (or similar) because that's the effect that I'm seeing. Everytime the displayLocation is called, the new text is being drawn right on top of the old text.