I'm having an issue where I can't seem to use a variable from my world class in the actor class. Basically the variable is a field that is assigned a value in a method in the World (either a 1 or 2). I am trying to access that variable in one of my actors. I am able to access it (whether by making it public or using a method to return it), however when I try to use it or inspect it by assigning it to a new variable in the Actor class the new variable always remains zero or is assigned zero. What am I not doing correctly?

