最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
将元件的拖动范围限制为圆形(as3)
时间:2022-07-02 17:10:11 编辑:袖梨 来源:一聚教程网
直接粘贴代码就可以看到效果
var b:Point=new Point();
var circle:Sprite = new Sprite();
var test:Sprite=new Sprite();
test.x=200;
test.y=200;
circle.graphics.beginFill(0xFFCC00);
circle.graphics.drawCircle(0, 0, 10);
test.addChild(circle);
addChild(test)
circle.addEventListener(MouseEvent.MOUSE_DOWN,cd);
stage.addEventListener(MouseEvent.MOUSE_UP,sd);
function cd(e:MouseEvent) {
test.addEventListener(Event.ENTER_FRAME,line);
}
function sd(e:MouseEvent) {
circle.alpha=1
test.removeEventListener(Event.ENTER_FRAME,line);
}
function line(e:Event) {
b.x=test.mouseX;
b.y=test.mouseY;
if (b.length>100) {
b.normalize(100);//主要是这个方法实现半径为100的圆形范围
}
circle.x=b.x;
circle.y=b.y;
circle.alpha=.5
test.graphics.clear();
test.graphics.lineStyle(1);
test.graphics.lineTo(b.x,b.y);
}
相关文章
- 《无限暖暖》天星之羽获得位置介绍 12-20
- 《流放之路2》重铸台解锁方法介绍 12-20
- 《无限暖暖》瞄准那个亮亮的成就怎么做 12-20
- 《无限暖暖》魔气怪终结者完成方法 12-20
- 《无限暖暖》曙光毛团获得位置介绍 12-20
- 《无限暖暖》日光果获得位置介绍 12-20