コード例 #1
1
ファイル: Animator2.java プロジェクト: orez-/520proj
  public boolean mouseDown(Event e, int x, int y) {
    if (suspended) {
      animate.resume();
      suspended = false;
    } else {
      animate.suspend();
      suspended = true;
    }

    return true;
  }
コード例 #2
0
ファイル: ComeCocosView.java プロジェクト: fjmh89/pacman
 public synchronized void reanudar() {
   if (t != null) t.resume();
   if (soltarCoco != null) soltarCoco.resume();
   suspender = false;
   laberinto1.reanudarCocos();
   if (laberinto1.areComidos())
     try {
       cocoComido.Continuar();
     } catch (Exception ex) {
       Logger.getLogger(ComeCocosView.class.getName()).log(Level.SEVERE, null, ex);
     }
   else if (laberinto1.areweakCocos())
     try {
       cocoWeak.Continuar();
     } catch (Exception ex) {
       Logger.getLogger(ComeCocosView.class.getName()).log(Level.SEVERE, null, ex);
     }
   else
     try {
       cocoNormal.Continuar();
     } catch (Exception ex) {
       Logger.getLogger(ComeCocosView.class.getName()).log(Level.SEVERE, null, ex);
     }
   continuar = true;
   notify();
 }