Is it possible to assign the class name of an actor to a string? if so ow would you do it.


1 2 | Actor actor = getObjects(Actor. class ).get( 0 ); // get actor reference String type = actor.getClass().getName(); // put class name of actor to a string |