Значит у меня где-то ошибка в передаче параметров. Я создаю новый объект класса Bullet

Код AS3:
stage.addChild(new Bullet(bulletX+currentBulletNumber*5,y-this.height/2,-0.05));

Код AS3:
public function Bullet(x:int, y:int, shiftX:Number) {
this.x=x;
this.y=y;
this.shiftX=shiftX;
Так как я пишу this.shiftX=shiftX вообще можно писать?