I want to have specific control of each object in my actor subclass. For example, make a class called Crab. In the field, create a List crabTotal, which I initialized in the construtor to: crabTotal=arrayList<Crab>(); My goal is to keep track of how many ants each crab object eats. So, then I try say doing this: Crab cr1=crabTotal.get(1); I have done this sort of thing in Processing and Java, but am confused why it won't work here.