abdulr 0 Posted January 4, 2019 How do i convert [L]java.lang.String;@numbers to a valid output string GameObject random = getClosests("sadasdsad") then im trying to log the actions -> log(random.hasActions); but its coming in the java.lang format how do i convert it to normal strings
ozeki6 32 Posted January 4, 2019 Just make a method that iterates through the object's actions. void outputActions(GameObject obj) { String actions[] = obj.getActions(); for(String action : actions) { log(action); } } It should be something like that ^
Recommended Posts
Archived
This topic is now archived and is closed to further replies.