I'm sorry as this coding language is not in C++, but it is very simlar to it.
I basically trying to learn how it works if I have an example of this:
new NodeArray[]
{
{0,0,0,0},
{1,1,1,1},
{2,2,2,2},
{3,3,3,3}
}
I want an example of it working on how to get to a selected node, e.g
NodeArray[1] would print 0,0,0,0.
I'm explaining the loop in pawn as it would be different in c++.
E.G
for(new n = 0; n < sizeof(NodeArray) n++)
{
}
Can anyone put into context how the node order would be calcluated and saved in a new array e.g new node1joint, node2joint. etc
Kyle