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