so i have a few variables that are int the world class as private doubles.
I am completely brain dead on how to use the variables from the world to the actor
// with a double field of
private double doubleValue;
// create this getter method
public double getDoubleValue()
{
return doubleValue;
}double doubleValue = ((MyWorld)getWorld()).getDoubleValue();