Hi, how I can make, when actor score is more than 5, he can collect Tulipan.
if(score == 5)
{
if(isTouching(Tulipan.class))
{
this.setLocation (1500,1000);
this.getWorld().removeObject(this.getOneIntersectingObject(Tulipan.class));
}
}


