Can you define an actor, and then send it variable information? I'm in a position where I can't really send information through world. So can you do something like:
Or is sending information through world the only way to do it?
Actor player = getOneObjectAtOffset(0,0,Player.class);
if (player!=null){
//[insert code that sends information here]
}

