I need there to be one where the colors on the circle meter meet.
private ViralLoad load = new ViralLoad(0, 0);
protected void addedToWorld(World world)
{
world.addObject(load, 0, 0);
updateLoadPosition();
}
private void updateLoadPosition()
{
load.setLocation(getX(), getY());
load.setRotation(-degFull);
load.move(75);
}