⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 squaresprite.as

📁 as30的详细例子,包含了大量的例子,是不可多得的学习AS3的好资料
💻 AS
字号:
package com.example.programmingas3.spritearranger
{
    import com.example.programmingas3.geometricshapes.Square;
    import flash.events.MouseEvent;
    
	public class SquareSprite extends GeometricSprite
	{
		public function SquareSprite(size:Number = 100, lColor:Number = 0x000000, fColor:Number = 0xCCEECC)
		{
			super(size, lColor, fColor);
			this.shapeType = "Square";
			this.geometricShape = new Square(size);
			
			drawShape();
		}
		
		public override function drawShape():void
		{
			this.graphics.clear();
			
			this.graphics.lineStyle(1.0, this.lineColor, 1.0);
			this.graphics.beginFill(this.fillColor, 1.0);
			
			this.graphics.drawRect(0, 0, this.size, this.size);
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -