I have a scrolling world and I want an Actor to stay on top of another when it's moving.
In this case I want the text to stay on top of my object, implementing it this way is very "jiggly", the text location doesn't update fast enough I guess, so it doesn't look smooth at all, any recommendations for making it seem more flawless and smooth?
@Override
public void setLocation(int x,int y)
{
super.setLocation(x,y);
text.setLocation(x,y);
}
