lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Hi,

Aren't you getting a "attempt to index a nil value" error?

> anim[0].time=300  --This the line that I get the error on.

The first index created automaticaly is 1, so that you should change
the line to

	anim[1].time=300

Regards,
Diego.