我正在创建 Flash 游戏,这里是重新启动按钮,并且我具有从舞台上删除所有对象(子对象)的功能。
function restartGame(e:MouseEvent):void
{
while (numChildren > 0) {
removeChildAt(0);
}
addChild(_cards);
//here I need to add background
startMemoryGame();
}
正常情况下不需要添加背景,游戏启动时自动添加。在库中它被称为 background.jpg,我将它转换为图形,现在我将它命名为背景添加链接“背景”,但addChild(background);
对我不起作用。你可以帮帮我吗?谢谢你。