I'm attempting to use getIntersectingObjects() to create an explosion and damage every actor in contact with it. Would this return an array or a list (or does a list even apply?). I'm doing some googling on trying to find out if I can operate a method on each one of the objects in the array individually (AKA run the damage method on every object in the array). Is this possible?
I'm thinking maybe determine the length of the array then do a "For" loop until it reaches that last object in the array. Is "arrayName.length" how to get the length?