我正在尝试为 Flex Canvas 上的正方形动画图像编写一些代码。下面的代码有问题,因为它变得越来越慢。我想我应该清理旧广场什么的。
我在下面做错了什么?:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="init();">
<mx:Script>
<![CDATA[
public var ticker:Timer;
public function init():void {
ticker = new Timer(10);
// This implements the timerEvent
ticker.addEventListener(TimerEvent.TIMER, update);
ticker.start();
draw();
}
public function update(evt:TimerEvent):void {
draw();
}
public function draw():void {
var squareSize:uint = 10;
var square:Shape = new Shape();
square.graphics.beginFill(0xFFFFFF, 1.0);
square.graphics.drawRect(0, 0, myCanvas.width, myCanvas.height);
var i:int;
for (i = 0; i < myCanvas.height / squareSize; i++) {
var j:int;
for (j = 0; j < myCanvas.width / squareSize; j++) {
if (Math.random() < 0.5) {
square.graphics.beginFill(0x000000, 1.0);
square.graphics.drawRect(j * squareSize, i * squareSize, squareSize, squareSize);
}
}
}
square.graphics.endFill();
myCanvas.rawChildren.addChild(square);
}
]]>
</mx:Script>
<mx:Panel title="Random Squares" height="95%" width="95%"
paddingTop="5" paddingLeft="5" paddingRight="5" paddingBottom="5">
<mx:Canvas id="myCanvas" borderStyle="solid" height="100%" width="100%">
</mx:Canvas>
</mx:Panel>
</mx:Application>