Hello, I am a newbie in unity. I have created a object which has a Rigidbody component and it fall towards the -y axis.
Also i have added a score game object which tells the score of the player everytime it falls but as the object is falling towards -y axis it tells score too in minus which looks pretty bad
I have written following block of code to update score everytime it falls:
Score.text = Player.transform.position.y.ToString("0");
When it executes it gives output like; -7,-8-9 etc.
I just want that the same (-7,-8,-9) to be shown in +.