I am facing a problem related to indexing in my unity project.

[31612-screen+shot+2014-08-27+at+2.03.48+pm.png|31612]
this is the error which I am facing in my project. Can any body please help related to this.

You are using either uninitialized list or list with fixed capacity. Either way, you must have made an attempt to access field of list which doesn’t exist. For example, if you have list foo 5 elements long, you can acces: foo[0], foo[1], foo[2], foo[3] and foo[4]. foo[5] will cause error above, as well as foo[6] etc.