Hi, I'm trying to make an actor(let's call it actor a) that move around in a circle around another actor(actor b), even while actor b is moving. All I've got is this :But it keeps spinning in the same place over and over again even when actor b is moving. Help!
public act() { move(5); setRotation(getRotation() + 10); }