为什么我的For循环不会在屏幕上创建多个对象?

时间:2015-05-01 20:22:22

标签: actionscript-3 flash for-loop

有点问题。我正在尝试在舞台上添加10个项目,但它只是添加1.对我做错的任何见解?

        public var numCells:Array = [];
        public function addCell():void
        {
            var cell:Cell = new Cell();
            var i:int = 0;
            cell.x = Math.floor(Math.random() * 1366);
            cell.y = Math.floor(Math.random() * 768);
            for(var i:int = 0; i < 10; i++)
            {
                numCells.push(cell);
                addChild(cell);
            }
            return;
        }

0 个答案:

没有答案