
06-01-2002, 02:23 AM
|
|
Scripter
|
Join Date: Nov 2001
Location: Brazil
Posts: 374
|
|
Re: arrays
Quote:
Originally posted by screen_name
i was wondering what the number before the array is for, ie
this.arrayname = 0/{-2,0,2,0}
??
|
its the number that its not an array..
this.a=1;
this.a={5,5,5}
so:
this.a = 1/{5,5,5}
this.a=1;
this.a[0]=5;
this.a[1]=5;
this.a[2]=5; |
|
|
|