2019年1月20日 星期日

Week07劉峻宇

                                         上課實作

1.血量製作
int life=10;
boolean gameOver=false;
void setup(){
   size(500,500);
}
void draw(){
  background(0,0,205);
  fill(255); rect(50,50, 100,20);
  fill(255,0,0); rect(50,50, 100,20);
  if(gameOver){
    textSize(40);
    text("Game Over", 150,150);
  }
}
void mousePressed(){
  life--;
  if(life<=0) gameOver=true;
}



2.

沒有留言:

張貼留言