Hi, I have a label that’s supposed to show a number and put a percentage sign after it.
However, only the number is showing, the percentage sign doesn’t show up.
The string looks like this: (Mathf.RoundToInt(playerScript.fuel / playerScript.beginningFuel * 100f)).ToString() + “%”
I know that % is used as an operator in C#, so it’s not “supposed” to be shown. How could I get around this?