เลื่อน ซ้ายขวา hit เก็บผลไม้ ได้คะแนน
onClipEvent (enterFrame) {
if (Key.isDown(Key.LEFT)) {
if (_x>0) {
_x -= 10;
}
}
if (Key.isDown(Key.RIGHT)) {
if (_x<900) {
_x += 10;
}
}
for (i=1; i<=5; i++) {
if (this.hitTest(_root["orange"+i]) && _root["orange"+i].dead == 0) {
_root["orange"+i].gotoAndPlay(2);
_root.score++;
}
if (this.hitTest(_root["worm"+i]) && _root["worm"+i].dead == 0) {
_root["worm"+i].gotoAndPlay(2);
_root.score--;
}
}
}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น