Hi
I have variable in my world, and I want to change it in Actor code not in world.
How can I do that????
private int something = 0; public int getSomething() {return something;} public void setSomething(int newValue) {something = newValue;} public void addSomething(int newValue) {something += newValue;}
((WorldClassName) getWorld()).setSomething(100);