我正在制作像http://www.puzzlegames.org/814games-Connect-2-Game-game.html这样的游戏。那么我应该在connected()
函数中添加什么?
fB
和sB
是第一个和第二个按钮。
fBN
和sBN
是这些按钮的名称。
allNull()
fB
,sB
,fBN
,sBN
为空。
function onClick(e:MouseEvent):void {
if (! another) {
another = true;
fB = e.target;
fBN = e.target.name;
}
else {
sB = e.target;
sBN = e.target.name;
if (fBN == sBN)
{
allNull();
}
else if (connected())
{
fB.removeEventListener(MouseEvent.MOUSE_DOWN, onClick);
sB.removeEventListener(MouseEvent.MOUSE_DOWN, onClick);
fB.alpha = 0;
sB.alpha = 0;
pairCount++;
allNull();
if (pairCount == 25)
{
gameOver = false;
showScore();
endGame();
}
}
another = false;
}
}
请帮忙。我试图解决这个问题,因为15天。 提前谢谢。