Hi,
I am creating an array List of Vector3 values like this:
var attackerWayPointArray = new List.<Vector3>();
Rather than having each value named as ‘Element 0’, ‘Element 1’ etc, I would like to be able to change the element name to something more like ‘Start’ so that I can search for the Vector3 value by name.
This is so that I can refer to the way-points as they will be constantly changing.
Is this possible?