Exemplo n.º 1
0
 public void waitingAnimateWizard() {
   Thread thread =
       new Thread(new AAvatarAnimationCommand(awizardwaiting, canvas.getWizardAvatar(), 10, 10));
   thread.start();
 }
Exemplo n.º 2
0
 private void setAvatars() {
   avatars.put("dorothy", canvas.getDorothyAvatar());
   avatars.put("scarecrow", canvas.getScarecrowAvatar());
   avatars.put("wizard", canvas.getWizardAvatar());
 }
Exemplo n.º 3
0
 public void waitingAnimateScarecrow() {
   Thread thread =
       new Thread(
           new AAvatarAnimationCommand(ascarecrowwaiting, canvas.getScarecrowAvatar(), 10, 10));
   thread.start();
 }
Exemplo n.º 4
0
 public void waitingAnimateDorothy() {
   Thread thread =
       new Thread(new AAvatarAnimationCommand(adorothywaiting, canvas.getDorothyAvatar(), 10, 10));
   thread.start();
 }
Exemplo n.º 5
0
 public void animateWizard() {
   Thread thread =
       new Thread(new AAvatarAnimationCommand(avataranimator, canvas.getWizardAvatar(), 10, 10));
   thread.start();
 }
Exemplo n.º 6
0
 public void animateScarecrow() {
   Thread thread =
       new Thread(
           new AAvatarAnimationCommand(avataranimator, canvas.getScarecrowAvatar(), 10, 10));
   thread.start();
 }
Exemplo n.º 7
0
 public void animateDorothy() {
   Thread thread =
       new Thread(new AAvatarAnimationCommand(avataranimator, canvas.getDorothyAvatar(), 10, 10));
   thread.start();
 }