On Dec 29, 2005, at 5:22 PM, adam beazley wrote:

> So now what I am thinking is I can do a while loop and make the  
> name of
> the material and the texture start with images[0] and incrament by one
> until they are all exhausted. I need to search and find out how to
> increment in ruby (++i)?

I'm starting to pick up Ruby, and I learned through trial and error  
recently that I had to increment like this:

value += 1

The ++ operator didn't seem to be present, and it's not listed in  
Table 22.4, Ruby operators, of Programming Ruby, 2nd ed.

Regards,
Craig