• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 130 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0037 秒)

1. 关于graphics镂空的问题https://ask.layabox.com/question/139 [ 100%]

...new Sprite(); redBox.pos(250,200); redBox.autoSize = true; redBox.graphics.drawRect(0,0,100,100,'#ff0000'); Laya.stage.addChild(redBox); redBox.on("click",this,function(){ trace("click redbox"); }); redBox.on("mouseover",this,function(){ redBox.graphics.clear(); redBox.graphics.drawRect(0,0,100,100,...

来源: Laya_社区 发布时间: 20170710

2. graphics透明度设置详细步骤 [ 98%]

...黄色区域 this.graphics.save(); this.graphics.alpha(0.5); this.graphics.drawRect(-40, -110, 80, 110, "#ffcc00"); this.graphics.restore(); //再画一个红色小半透明区域 this.graphics.save(); this.graphics.alpha(0.7); this.graphics.drawRect(40, -110, 80, 110, "#ff0000"); this.graphics.rest...

来源: Laya_社区 发布时间: 20161228

3. LayaAir引擎与原生Flash的差异文档说明! [ 97%]

... var sp:Sprite=new Sprite(); sp.graphics.beginFill(0xFFFF00); sp.graphics.drawRect(0,0,200,200); sp.graphics.endFill(); addChild(sp); var mask:Sprite=new Sprite(); mask.graphics.beginFill(0xFF0000); mask.graphics.drawCircle(0,0,50); mask.graphics.endFill(); sp.mask=mask2、动态遮罩 var sp:Sprite...

来源: Laya_社区 发布时间: 20170207

4. graphics 绘制线条粗细不一样 [ 96%]

...graphics 绘制线条粗细一样 canvas 正常 版本最新 this.graphics.drawRect(0,0,100,100,null,"#000000",2) 效果: 代码:             var sp:Sprite = new Sprite();             this.addChild(sp);             sp.pos(200, 200);             sp.graphics.d...

来源: Laya_社区 发布时间: 20180510

5. 点击区域问题 [ 93%]

...laya.display.Sprite; con.addChild(sp); sp.x = 250; sp.y = 300; sp.graphics.drawRect(-50,-100,100,100,"#ff0000"); sp.hitArea = new laya.maths.Rectangle(-50,-100,100,100); sp.on(laya.events.Event.CLICK,this,this.spHandler); function spHandler() {     sp.graphics.clear();     var rc:number = Ma...

来源: Laya_社区 发布时间: 20180106

6. 半透明的矩形鼠标穿透问题 [ 93%]

...透问题 //画矩形 this.addLabel = new Sprite(); this.addLabel.graphics.drawRect(0, 730, 1440, 170, "#000000"); this.addLabel.alpha = 0.6; this.addLabel.mousethrough = false; this.addLabel.mouseEnabled = true; sp.addChild(this.addLabel); 仍然能够点击下面的按钮.这个要怎么处理? 20...

来源: Laya_社区 发布时间: 20170726

7. viewport 的用法 [ 91%]

...ot.__super.call(this);       this.size(200,200);       this.graphics.drawRect(0,0,200,200,'#123456');       var viewPort = new Rectangle(0,0,200,200);             this.viewport = viewPort;       var ccc = new Sprite();       ccc.graphics.drawRect(0,0,50,50,'#123000');       t...

来源: Laya_社区 发布时间: 20170323

8. hitArea怎么用 [ 91%]

...Area怎么用 var container = new Sprite();         container.graphics.drawRect(0,0,640,1136,'#ff0000');         container.size(640,1136)         Laya.stage.addChild(container);                       var bg2Sprite =  new Sprite();         bg2Sprite.graphics.drawRect(0,0,...

来源: Laya_社区 发布时间: 20170223

9. 被遮罩的显示对象的子显示对象再添加遮罩,则子显示对象显示不正确 [ 90%]

...常显示。 let bigMask:Laya.Sprite = new Laya.Sprite(); bigMask.graphics.drawRect(0, 0, 300, 200, "#ffffff"); this.mask = bigMask; // let imgMask:Laya.Sprite = new Laya.Sprite(); imgMask.graphics.drawRect(0, 0, 100, 300, "#ffffff"); this.img.mask = imgMask; Laya.Tween.to(this.img, {x:100}, 10000)....

来源: Laya_社区 发布时间: 20190722

10. 被遮罩的对象的子显示对象再添加遮罩,子显示对象的遮罩显示不正确 [ 89%]

...常显示。 let bigMask:Laya.Sprite = new Laya.Sprite(); bigMask.graphics.drawRect(0, 0, 300, 200, "#ffffff"); this.mask = bigMask; // let imgMask:Laya.Sprite = new Laya.Sprite(); imgMask.graphics.drawRect(0, 0, 100, 300, "#ffffff"); this.img.mask = imgMask; Laya.Tween.to(this.img, {x:100}, 10000)....

来源: Laya_社区 发布时间: 20190722