ActionScript游戏 - 缺少部分

时间:2012-01-04 23:04:38

标签: flash actionscript

我在ActionScript中制作游戏,它基本上是一个小行星类型的游戏。 当它被玩时,作为岩石的敌人不会出现在屏幕上。 这是一个非常大的问题,如果有人能解决它,我将非常感激。

我会提供下载文件的链接,因为这里有太多的代码。

感谢。

TweenLite.as(需要放在名为“gs”

的文件夹中

TweenLite Download

Bullet.as Download

Enemy.as Download

The main flash file

2 个答案:

答案 0 :(得分:0)

这里没有看到你的代码是一个非常标准的方法,通过AS3将项目放在舞台上

/* 
this code places an instance of the asteroid_mc into the variable asteroid so that it can be instantiated onto the stage with addChild and positioned using the .x and .y 
*/

var asteroid:asteroid_mc = asteroid_mc();
addChild(asteroid);
asteroid.x = 200;
asteroid.y = 100;

答案 1 :(得分:0)

你错过了Flash文件中脚本第93行的右括号。因此,只有未闭合大括号的条件为真时,才会运行添加敌人的代码。

要平衡牙箍,您需要移除第109行的右括号。