This should be straight forward, but I can’t seem to find an answer. I’m trying to declare a string (String 2 below) to be located in another script by using a different string (String 1 below) from the active script.
Working within clickToDestroy.cs and pulling string 2 from RigidBodyFirstPersonController.cs
String 1: currentCount = (1,2,3,4,5,…~)
String 2: RigidbodyFirstPersonController.item(1,2,3,4,5,…~) (Depending on the value of currentCount, will be item1 item2 item3, etc.)
Is there a way to concatenate currentCount inline with RigidbodyFirstPersonController.item(insert currentCount here) during the declaration?