I have a basic question with a for loop statement where I have a function thats creating input nodes inside my animation program.
The name thats assigned to the input that the function creates is "InputNum" . How do I tack on the value of i to the end of the "InputNum" character string?
int i;
for (i=0;i<36;i++)
{
mInputs[i] = AnimationNodeInCreate ( i, "InputNum", ANIMATIONNODE_TYPE_NUMBER );
}