public void waitingAnimateDorothy() { Thread thread = new Thread(new AAvatarAnimationCommand(adorothywaiting, canvas.getDorothyAvatar(), 10, 10)); thread.start(); }
private void setAvatars() { avatars.put("dorothy", canvas.getDorothyAvatar()); avatars.put("scarecrow", canvas.getScarecrowAvatar()); avatars.put("wizard", canvas.getWizardAvatar()); }
public void animateDorothy() { Thread thread = new Thread(new AAvatarAnimationCommand(avataranimator, canvas.getDorothyAvatar(), 10, 10)); thread.start(); }