Hello everyone,
I'd like to detect the image of another Actor when my object collides with thus Actor. How would I go about doing this?
Thank you.
if (!getIntersectingObjects(Actor.class).isEmpty()) {
//your object is touching another actor;
}
if (getOneInteresectingObject(Actor.class) != null) {
//your object is touching another actor;
}