|
|
Le 28/11/2010 14:41, Blua Tigro nous fit lire :
> i cut and paste a part of a example
> to move 1 bal whit phisics
>
> but how do you do this
> whit a array of bal's ?
With a loop:
//assuming Position & Velocity are arrays
#local idx=0;
#while (idx < dimension_size(Position,1))
#write (Previous, Position[idx],",",Velocity[idx],"\n");
#local idx=idx+1;
#end
Post a reply to this message
|
|