Hello,
I've got an array of initialized vectors, and transform nodes:
vector $positionVector[];
vector $transformNode[];
and I'm trying to move each transform node (object) on the array to the corresponding position, as follows:
move -absolute ($positionVector[$i]) $transformNode[i];
Unfortunately, I keep getting the error message:
Error: Error while parsing arguments. //
What am i doing wrong???
Thanks.