コード例 #1
0
ファイル: SquareFishy.java プロジェクト: mtkent/MunchyFish
  public void onMouseMove(Location point) {

    if (gameOn) {
      theFish.moveTo(point.getX() - theFish.getWidth() / 2, point.getY());

      lastMouse = point;
      currentScore = theFish.getScore();
      score.setText("Score: " + currentScore);
      score.moveTo((canvas.getWidth() - score.getWidth()) / 2, 50);
    }
  }
コード例 #2
0
ファイル: FramedText.java プロジェクト: nshimiye/finalGame
 // settext
 public void setText(String text) {
   message.setText(text);
 }