public float PathLength = 0f;
PathLength = PathLength + SegmentLength;
This gives me the correct data I want, displayed in the Inspector.
I want it displayed in the HUD.
So In My HUDScript I wrote this:
mytext.text = "Line Length: " + PathLength;
I get this error:
**error CS0103: The name `PathLength' does not exist in the current context**
↧