Is there a simpler way to add 3 strings together by parsing it as integers and then pass the resulting value to a string?
For example:
public string SumVal;
public string val_1;
public string val_2;
public string val_3;
void Start()
{
SumVal = int.Parse(val_1) + int.Parse(val_2) + int.Parse(val_3);
}