I am getting an actor with getOneObjectAtOffset(), and I need to run a method on it. The problem is, it is of type Actor and you can't run methods that aren't in the Actor class. Any help?
You need a cast:
((ClassName)actor).methodName();
Where 'ClassName' is the name of the class of the actor (i.e. the class that defines the method you want to call), 'actor' is the reference to the actor, and 'methodName' is the name of the method you want to call.